diff --git a/ai.c b/ai.c index c4fba14..6e517fd 100644 --- a/ai.c +++ b/ai.c @@ -57,6 +57,11 @@ enum OBTYPE aigetattackspell(lifeform_t *lf, lifeform_t *victim) { } else { ok = B_TRUE; } + } else if (ot->id == OT_A_CRUSH) { + // can only crush if you first grab something + if (lfhasflag(lf, F_GRABBING)) { + ok = B_TRUE; + } } else { ok = B_TRUE; } diff --git a/attack.c b/attack.c index e0ae7b4..769c989 100644 --- a/attack.c +++ b/attack.c @@ -296,7 +296,7 @@ int attacklf(lifeform_t *lf, lifeform_t *victim) { sprintf(buf, "%s",attackername); capitalise(buf); - if (wep && !unarmedflag && (lf->race->id != R_DANCINGWEAPON)) { + if (wep && !unarmedflag && (lf->race->id != R_DANCINGWEAPON) && haslos(player, lf->cell)) { sprintf(withwep, " with %s", wepname); } else { strcpy(withwep, ""); @@ -328,16 +328,19 @@ int attacklf(lifeform_t *lf, lifeform_t *victim) { gainhp(victim, dam[i]); } } else { + char attackername2[BUFLEN]; + real_getlfname(lf, attackername2, B_FALSE); // victim loses hp // don't adjust damage - we've already done that if (wep && !unarmedflag) { char wepname[BUFLEN]; getobname(wep, wepname, 1); - sprintf(buf, "%s^%s %s",attackername, + sprintf(buf, "%s^%s %s",attackername2, (lf == victim) ? "using" : "weilding", wepname); } else { - strcpy(buf, attackername); + char attackername2[BUFLEN]; + strcpy(buf, attackername2); } losehp_real(victim, dam[i], damtype[i], lf, buf, B_FALSE); @@ -368,7 +371,7 @@ int attacklf(lifeform_t *lf, lifeform_t *victim) { int dam; char lfname[BUFLEN]; dam = rolldie(f->val[0], f->val[1]) + f->val[2]; - getlfname(lf, lfname); + real_getlfname(lf, lfname, B_FALSE); losehp_real(victim, dam, DT_BITE, lf, lfname, B_FALSE); if (isplayer(victim) || haslos(player, victim->cell)) { msg("%s bites %s!", lfname, victimname); @@ -619,8 +622,78 @@ int getarmourdamreduction(lifeform_t *lf, object_t *wep, int dam, enum DAMTYPE d char *getattackverb(enum DAMTYPE damtype, int dam, int maxhp) { float pct; pct = (int)(((float) dam / (float) maxhp) * 100.0); - if (damtype == DT_PROJECTILE) { - return "hit"; + if (damtype == DT_BASH) { + if (pct <= 5) { + return "whack"; + } else if (pct <= 20) { + if (rnd(1,2) == 1) { + return "hit"; + } else { + return "bash"; + } + } else { + return "pummel"; + } + } else if (damtype == DT_BITE) { + if (pct <= 5) { + return "gnaw"; + } else if (pct <= 30) { + return "bite"; + } else { + return "savage"; + } + } else if (damtype == DT_CLAW) { + if (pct <= 5) { + return "scratch"; + } else if (pct <= 15) { + return "claw"; + } else if (pct <= 30) { + return "tear"; + } else if (pct <= 40) { + return "rake"; + } else if (pct <= 50) { + return "gouge"; + } else { + return "eviscerate"; + } + } else if (damtype == DT_CHOP) { + if (pct <= 5) { + return "hit"; + } else if (pct <= 15) { + return "hack"; + } else { + return "chop"; + } + } else if (damtype == DT_COLD) { + if (pct <= 10) { + return "chill"; + } else { + return "freeze"; + } + } else if (damtype == DT_CRUSH) { + return "crush"; + } else if (damtype == DT_ELECTRIC) { + if (pct <= 5) { + return "zap"; + } else if (pct <= 15) { + return "jolt"; + } else if (pct <= 20) { + return "shock"; + } else if (pct <= 30) { + return "electrify"; + } else { + return "electrocute"; + } + } else if (damtype == DT_FIRE) { + if (pct <= 5) { + return "scorch"; + } else if (pct <= 20) { + return "burn"; + } else if (pct <= 40) { + return "scald"; + } else { + return "incinerate"; + } } else if (damtype == DT_HOLY) { switch (rnd(1,2)) { case 1: @@ -642,32 +715,8 @@ char *getattackverb(enum DAMTYPE damtype, int dam, int maxhp) { } } else if (damtype == DT_POISONGAS) { return "poison"; - } else if (damtype == DT_ELECTRIC) { - if (pct <= 5) { - return "zap"; - } else if (pct <= 15) { - return "jolt"; - } else if (pct <= 20) { - return "shock"; - } else if (pct <= 30) { - return "electrify"; - } else { - return "electrocute"; - } - } else if (damtype == DT_CLAW) { - if (pct <= 5) { - return "scratch"; - } else if (pct <= 15) { - return "claw"; - } else if (pct <= 30) { - return "tear"; - } else if (pct <= 40) { - return "rake"; - } else if (pct <= 50) { - return "gouge"; - } else { - return "eviscerate"; - } + } else if (damtype == DT_PROJECTILE) { + return "hit"; } else if (damtype == DT_SLASH) { if (pct <= 5) { return "scratch"; @@ -678,58 +727,14 @@ char *getattackverb(enum DAMTYPE damtype, int dam, int maxhp) { } else { return "slice"; } - } else if (damtype == DT_CHOP) { - if (pct <= 5) { - return "hit"; - } else if (pct <= 15) { - return "hack"; - } else { - return "chop"; - } - } else if (damtype == DT_BASH) { - if (pct <= 5) { - return "whack"; - } else if (pct <= 20) { - if (rnd(1,2) == 1) { - return "hit"; - } else { - return "bash"; - } - } else { - return "pummel"; - } - } else if (damtype == DT_BITE) { - if (pct <= 5) { - return "gnaw"; - } else if (pct <= 30) { - return "bite"; - } else { - return "savage"; - } - } else if (damtype == DT_FIRE) { - if (pct <= 5) { - return "scorch"; - } else if (pct <= 20) { - return "burn"; - } else if (pct <= 40) { - return "scald"; - } else { - return "incinerate"; - } - } else if (damtype == DT_COLD) { - if (pct <= 10) { - return "chill"; - } else { - return "freeze"; - } + } else if (damtype == DT_TOUCH) { + return "touch"; } else if (damtype == DT_UNARMED) { if (rnd(1,2) == 1) { return "punch"; } else { return "hit"; } - } else if (damtype == DT_TOUCH) { - return "touch"; } return "hit"; } @@ -786,6 +791,10 @@ char *getkillverb(lifeform_t *victim, enum DAMTYPE damtype, int dam, int maxhp) return "shatter"; } + if (damtype == DT_CRUSH) { + return "crush"; + } + if (damtype == DT_HOLY) { return "smite"; } @@ -1182,10 +1191,12 @@ void wepeffects(object_t *wep, cell_t *where) { extradam = (int)(dampct * (float)maxdam); if (extradam > 0) { char buf[BUFLEN]; + char buf2[BUFLEN]; char obname[BUFLEN]; char damstring[BUFLEN]; char victimname[BUFLEN]; getlfname(owner, buf); + real_getlfname(owner, buf2, B_FALSE); getlfname(victim, victimname); getobname(wep, obname, 1); @@ -1198,7 +1209,7 @@ void wepeffects(object_t *wep, cell_t *where) { f->known = B_TRUE; } - sprintf(damstring, "%s%s blast of revenge",buf, getpossessive(buf)); + sprintf(damstring, "%s%s blast of revenge",buf2, getpossessive(buf2)); losehp(victim, extradam, DT_DIRECT, owner, damstring); } } // end if dampct > 50 diff --git a/defs.h b/defs.h index ed0c04e..09a18c7 100644 --- a/defs.h +++ b/defs.h @@ -22,17 +22,20 @@ enum ATTRIB { A_STR = 0, A_DEX = 1, A_IQ = 2, + A_CON = 3, }; -#define MAXATTS 3 +#define MAXATTS 4 enum CHECKTYPE { SC_STR, SC_DEX, SC_IQ, + SC_CON, ////////// SC_DODGE, SC_SLIP, SC_MORALE, + SC_OPENLOCKS, }; enum BURDENED { @@ -72,7 +75,8 @@ enum LFCONDITION { #define FROMOBACTIVATE (-9868) #define FROMMAT (-9867) #define FROMBLESSING (-9866) -#define FROMOBMOD (-9865) +#define FROMBRAND (-9865) +#define FROMOBMOD (-9864) #define IFKNOWN (-9772) // used by f_xxconfer. only confer a flag if item is known. @@ -165,6 +169,7 @@ enum LFCONDITION { #define AO_SPECIFIED 512 #define AO_READABLE 1024 #define AO_ARMOUR 2048 +#define AO_NOTKNOWN 4096 // askcoords target types #define TT_NONE 0 @@ -273,6 +278,7 @@ enum SPELLSCHOOL { }; enum STRBRACKET { + ST_RANDOM = -1, ST_HELPLESS = 0, ST_FEEBLE = 1, ST_VWEAK = 2, @@ -284,6 +290,7 @@ enum STRBRACKET { }; enum DEXBRACKET { + DX_RANDOM = -1, DX_INCOMPETENT = 0, DX_OAFISH = 1, DX_INEPT = 2, @@ -298,6 +305,7 @@ enum DEXBRACKET { }; enum IQBRACKET { + IQ_RANDOM = -1, IQ_MINDLESS = 0, IQ_VEGETABLE = 1, IQ_ANIMAL = 2, @@ -310,6 +318,18 @@ enum IQBRACKET { IQ_GENIUS = 9, }; +enum CONBRACKET { + CN_RANDOM = -1, + CN_FRAIL = 0, + CN_SICKLY = 1, + CN_UNHEALTHY = 2, + CN_UNFIT = 3, + CN_AVERAGE = 4, + CN_HEALTHY = 5, + CN_FIT = 6, + CN_HARDY = 7, +}; + // damage type enum DAMTYPE { DT_ALL = -1, @@ -334,9 +354,11 @@ enum DAMTYPE { DT_TOUCH = 18, DT_POISONGAS = 19, DT_UNARMED = 20, - DT_NONE = 21, // for direclty dealt damage, not really any type + DT_LIGHT = 21, + DT_CRUSH = 22, + DT_NONE = 23, // for direclty dealt damage, not really any type }; -#define MAXDAMTYPE 22 +#define MAXDAMTYPE 24 // Object Classes enum OBCLASS { @@ -390,6 +412,7 @@ enum RACE { R_HUMAN, // monsters R_BUGBEAR, + R_DARKMANTLE, R_EYEBAT, R_GIANTHILL, R_GIANTFIRE, @@ -696,11 +719,13 @@ enum OBTYPE { OT_S_GIFT, // abilities OT_A_GRAB, + OT_A_CRUSH, OT_A_JUMP, OT_A_SPRINT, OT_A_DEBUG, OT_A_EMPLOY, OT_A_HEAVYBLOW, + OT_A_INSPECT, // wands OT_WAND_COLD, OT_WAND_DETONATION, @@ -817,6 +842,7 @@ enum OBTYPE { OT_FISTS, OT_TAIL, OT_TEETH, + OT_TENTACLE, OT_ZAPPER, // monster weapons OT_ACIDATTACK, @@ -954,10 +980,11 @@ enum FLAG { F_DTIMMUNE, // immune to damtype val0 F_DTRESIST, // half dam from damtype val0 F_DTVULN, // double dam from damtype val0 + // if dam=0, set dam to textfield dice (eg.text="2d6") F_MATIMMUNE, // immune to damage from obs with material 'mat' F_DAMAGABLE, // this ob can be damaged via takedamage() F_TINTED, // when worn on eyes, protects against bright lights - F_HASOBMOD, // has the object mod v0 (ie. OM_FLAMESTRIKE) + F_HASBRAND, // has the object mod v0 (ie. OM_FLAMESTRIKE) F_HOLDCONFER, // gives flag v0+v1 when carried. v2 specifies if it must be id'd. F_EQUIPCONFER, // gives flag v0+v1 when weilded/worn. v2 specifies if it must be id'd. F_ACTIVATECONFER, // gives flag v0+v1 when activated. v2 specifies if it must be id'd. @@ -1011,6 +1038,8 @@ enum FLAG { // object mods/effects F_ONFIRE, // burning, also deals extra fire damage F_HEADLESS, // for corpses. can go on LFs too. + F_MASTERWORK, // weps do higher damager, armour protects better + F_SHODDY, // weps do less damage, armour protects less. // weapon flags F_OBATTACKDELAY, // how long weapon takes to attack F_DAMTYPE, // val0 = damage type @@ -1077,12 +1106,11 @@ enum FLAG { F_LASTCMD, // text[0] = last command performed, v0/1 = x/y of cell, v2=various F_STARTOB, // val0 = %chance of starting with it, text = ob name // val1,2 = min/max amounts. if NA, min=max=1. + F_STARTSKILL, // val0 = skill id F_STARTOBDT, // val0 = %chance of starting with damtype val1 F_STARTOBCLASS, // val0 = %chance of starting with obclass val1 F_STARTJOB, // val0 = %chance of starting with it, v1 = jobid - F_STARTIQ, // val0 = start iq bracket (ie. IQ_GENIUS) - F_STARTDEX, // val0 = start dex bracket (ie. DEX_xxx) - F_STARTSTR, // val0 = start str bracket (ie. STR_STRONG) + F_STARTATT, // val0 = A_xxx, val0 = start bracket (ie. IQ_GENIUS) F_CORPSETYPE, // text field specifies what corpse obtype to leave F_NOCORPSE, // monster's body crumbles to dust after death F_LFSUFFIX, // text = suffix. eg. "skeleton" @@ -1091,6 +1119,8 @@ enum FLAG { F_GUNTARGET, // current projectile weapon target F_CASTINGSPELL, // set while the player is casting a spell // v0 is spell id + // ABILITY FLAGS + F_FAILEDINSPECT, // lf has failed an inspect check for item id v0 // MONSTER AI FLAGS F_HOSTILE, // lf will attack the player if in sight F_FRIENDLY, // lf will attack all non-players if in sight @@ -1199,6 +1229,8 @@ enum FLAG { F_TIRED, // you are too tired to sprint F_DODGES, // you dodge missed attacks F_NOTIME, // this lf's actions don't take time + // skills + F_HASSKILL, // lf has skill v0 at level v1 // COMBAT F_HASATTACK, // objecttype id to use when attacking unarmed // if val0-3 are filled in, they override the object's @@ -1252,12 +1284,13 @@ enum HUNGER { //#define B_NOT (-3) enum LIGHTLEV { - L_DARK = -1, + L_PERMDARK = -1, L_NOTLIT = 0, L_TEMP = 1, - L_PERM = 2, + L_PERMLIGHT = 2, }; + #define B_DIEONFAIL (-1) #define B_BLUNTONFAIL (-2) @@ -1403,6 +1436,8 @@ typedef struct cell_s { struct celltype_s *type; struct obpile_s *obpile; enum LIGHTLEV lit; + enum LIGHTLEV origlit; + int littimer; char *writing; @@ -1528,6 +1563,38 @@ typedef struct material_s { struct material_s *next,*prev; } material_t; + +enum SKILL { + SK_LOCKPICKING, + SK_RESEARCH, +}; + +// proficiency levels +enum SKILLLEVEL { + PR_INEPT = 0, + PR_NOVICE = 1, + PR_BEGINNER = 2, + PR_ADEPT = 3, + PR_SKILLED = 4, + PR_EXPERT = 5, + PR_MASTER = 6, +}; + + +typedef struct skill_s { + enum SKILL id; + char *name; + char *desc; + struct skill_s *next, *prev; +} skill_t; + +typedef struct hiddenname_s { + enum OBCLASS obclass; + char *text; + int used; + struct hiddenname_s *next, *prev; +} hiddenname_t; + typedef struct knowledge_s { enum OBTYPE id; char *hiddenname; @@ -1584,34 +1651,49 @@ typedef struct object_s { } object_t; enum OBMOD { - OM_BALANCE, - OM_DEXTERITY, - OM_FEEBLENESS, - OM_FLIGHT, - OM_GIANTSTRENGTH, - OM_IMPACT, - OM_INTELLIGENCE, - OM_KNOWLEDGE, - OM_LEVITATION, - OM_MAGRESIST, - OM_SHARPNESS, - OM_PYROMANIA, - OM_REVENGE, - OM_SLOTH, - OM_SPEED, - OM_STRENGTH, - OM_SWIFTNESS, - OM_TELEKINESIS, - OM_TELEPATHY, - OM_WEAKNESS, + OM_FLAMING, + OM_HEADLESS, + OM_MASTERWORK, + OM_SHODDY, +}; +#define MAXOBMODS 4 + +enum BRAND { + BR_BALANCE, + BR_DEXTERITY, + BR_FEEBLENESS, + BR_FLIGHT, + BR_GIANTSTRENGTH, + BR_IMPACT, + BR_INTELLIGENCE, + BR_KNOWLEDGE, + BR_LEVITATION, + BR_MAGRESIST, + BR_SHARPNESS, + BR_PYROMANIA, + BR_REVENGE, + BR_SLOTH, + BR_SPEED, + BR_STRENGTH, + BR_SWIFTNESS, + BR_TELEKINESIS, + BR_TELEPATHY, + BR_WEAKNESS, }; -typedef struct obmod_s { - enum OBMOD id; +typedef struct brand_s { + enum BRAND id; char *description; char *suffix; flagpile_t *flags; enum BODYPART bp; + struct brand_s *next, *prev; +} brand_t; + +typedef struct obmod_s { + enum OBMOD id; + char *prefix; + flagpile_t *flags; struct obmod_s *next, *prev; } obmod_t; diff --git a/doc/add_attrib.txt b/doc/add_attrib.txt new file mode 100644 index 0000000..3b61743 --- /dev/null +++ b/doc/add_attrib.txt @@ -0,0 +1,18 @@ +defs.h: + add A_xxx + inc MAXATTS + + add CHECKTYPE (SC_xxx) + add xxxBRACKET + + +lf.c: + add getxxxname() + update rollstat() + add rollxxx() + update skillcheck() + update gainlevel() question + update givejob() + + +ooooooo replace startxxx with startstat diff --git a/doc/add_damtype.txt b/doc/add_damtype.txt index ae768fe..f337380 100644 --- a/doc/add_damtype.txt +++ b/doc/add_damtype.txt @@ -13,3 +13,4 @@ in attack.c will dull a weapon. ie. hitting a door with DT_CHOP won't damage the weapon ie. hitting a door with DT_SLASH _will_ damage the weapon + diff --git a/flag.c b/flag.c index 4f48f4a..01a8b65 100644 --- a/flag.c +++ b/flag.c @@ -295,10 +295,9 @@ void killflag(flag_t *f) { int howlong; // you get tired when you finish sprinting - // TODO: change this based on - // constitution - // running skill howlong = 5; + // adjust for constitution + howlong = howlong - (int) ((float)howlong * (getstatmod(lf, A_CON) / 100) ); addtempflag(f->pile, F_TIRED, B_TRUE, NA, NA, NULL, howlong); } diff --git a/io.c b/io.c index 7e92213..92ee33c 100644 --- a/io.c +++ b/io.c @@ -806,7 +806,7 @@ int announceflaggain(lifeform_t *lf, flag_t *f) { } break; case F_PRODUCESLIGHT: - msg("%s start%s glowing!", lfname, isplayer(lf) ? "" : "s"); + msg("%s start%s producing light!", lfname, isplayer(lf) ? "" : "s"); donesomething = B_TRUE; break; case F_REGENERATES: @@ -1055,7 +1055,7 @@ int announceflagloss(lifeform_t *lf, flag_t *f) { if (lf2 && !isdead(lf2)) { char buf[BUFLEN]; getlfname(lf2, buf); - msg("%s releases %s.",buf, lfname); + msg("%s break%s free from %s!",lfname, isplayer(lf) ? "" : "s", buf); donesomething = B_TRUE; } break; @@ -1100,7 +1100,7 @@ int announceflagloss(lifeform_t *lf, flag_t *f) { } break; case F_PRODUCESLIGHT: - msg("%s stop%s glowing!", lfname, isplayer(lf) ? "" : "s"); + msg("%s stop%s glowing.", lfname, isplayer(lf) ? "" : "s"); donesomething = B_TRUE; break; case F_REGENERATES: @@ -1282,15 +1282,15 @@ void announceobflagloss(object_t *o, flag_t *f) { } -object_t *askobject(obpile_t *op, char *prompt, int *count, int opts) { +object_t *askobject(obpile_t *op, char *prompt, int *count, long opts) { return doaskobject(op, prompt, count, opts, F_NONE, OC_NULL); } -object_t *askobjectwithflag(obpile_t *op, char *prompt, int *count, int opts, enum FLAG withflag) { +object_t *askobjectwithflag(obpile_t *op, char *prompt, int *count, long opts, enum FLAG withflag) { return doaskobject(op, prompt, count, opts, withflag, OC_NULL); } -object_t *askobjectofclass(obpile_t *op, char *prompt, int *count, int opts, enum OBCLASS obclass) { +object_t *askobjectofclass(obpile_t *op, char *prompt, int *count, long opts, enum OBCLASS obclass) { return doaskobject(op, prompt, count, opts, F_NONE, obclass, OC_NULL); } @@ -1305,7 +1305,7 @@ int contains(enum OBCLASS *array, int nargs, enum OBCLASS want) { return B_FALSE; } -object_t *doaskobject(obpile_t *op, char *prompt, int *count, int opts, enum FLAG withflag, ...) { +object_t *doaskobject(obpile_t *op, char *prompt, int *count, long opts, enum FLAG withflag, ...) { int c,i; object_t *mylist[MAXPILEOBS+1]; char myletters[MAXPILEOBS+1]; @@ -1395,40 +1395,7 @@ object_t *doaskobject(obpile_t *op, char *prompt, int *count, int opts, enum FLA ok = B_FALSE; } } - if ((opts & AO_ONLYEQUIPPED) && !hasflag(o->flags, F_EQUIPPED)) { - ok = B_FALSE; - } - if ((opts & AO_EQUIPPEDARMOUR)) { - flag_t *ff; - ff = hasflag(o->flags, F_EQUIPPED); - if (!ff) { - ok = B_FALSE; - } else if (ff->val[0] == BP_WEAPON) { - ok = B_FALSE; - } - } - if ((opts & AO_EDIBLE) && !isedible(o)) ok = B_FALSE; - if ((opts & AO_READABLE) && !isreadable(o)) ok = B_FALSE; - if ((opts & AO_ARMOUR) && (o->type->obclass->id != OC_ARMOUR)) ok = B_FALSE; - if ((opts & AO_WEARABLE) && !iswearable(o)) { - ok = B_FALSE; - } - if ((opts & AO_WEILDABLE) && !isweapon(o)) { - ok = B_FALSE; - } - if ((opts & AO_OPERABLE) && !isoperable(o)) { - ok = B_FALSE; - } - if ((opts & AO_POURABLE) && !ispourable(o)) { - ok = B_FALSE; - } - if (opts & AO_NOTIDENTIFIED) { - // if ob is identified - if (isidentified(o)) { - ok = B_FALSE; - } - } - + ok = obmatchescondition(o, opts); if (ok) { mylist[i] = o; myletters[i] = nextlet; @@ -1573,7 +1540,7 @@ object_t *doaskobject(obpile_t *op, char *prompt, int *count, int opts, enum FLA return NULL; } -int askobjectmulti(obpile_t *op, char *prompt, int opts) { +int askobjectmulti(obpile_t *op, char *prompt, long opts) { int c,i; object_t *mylist[MAXPILEOBS+1]; int selected[MAXPILEOBS+1]; @@ -1635,40 +1602,7 @@ int askobjectmulti(obpile_t *op, char *prompt, int opts) { if (o->type->obclass->id == sortorder[c]) { int ok; // can we include this object? - ok = B_TRUE; - if ((opts & AO_ONLYEQUIPPED) && !hasflag(o->flags, F_EQUIPPED)) { - ok = B_FALSE; - } - if ((opts & AO_EQUIPPEDARMOUR)) { - flag_t *ff; - ff = hasflag(o->flags, F_EQUIPPED); - if (!ff) { - ok = B_FALSE; - } else if (ff->val[0] == BP_WEAPON) { - ok = B_FALSE; - } - } - if ((opts & AO_EDIBLE) && !isedible(o)) ok = B_FALSE; - if ((opts & AO_READABLE) && !isreadable(o)) ok = B_FALSE; - if ((opts & AO_ARMOUR) && (o->type->obclass->id != OC_ARMOUR)) ok = B_FALSE; - if ((opts & AO_WEARABLE) && !iswearable(o)) { - ok = B_FALSE; - } - if ((opts & AO_WEILDABLE) && !isweapon(o)) { - ok = B_FALSE; - } - if ((opts & AO_OPERABLE) && !isoperable(o)) { - ok = B_FALSE; - } - if ((opts & AO_POURABLE) && !ispourable(o)) { - ok = B_FALSE; - } - if (opts & AO_NOTIDENTIFIED) { - // if ob is identified - if (isidentified(o)) { - ok = B_FALSE; - } - } + ok = obmatchescondition(o, opts); if (ok) { mylist[i] = o; @@ -2092,6 +2026,8 @@ void describeob(object_t *o) { f = hasflag(o->flags, F_DAM); if (f) { + char buf[BUFLEN]; + char dicebuf[BUFLEN]; int mindam,maxdam; getdamrange(o->flags, &mindam, &maxdam); mindam += bonus; @@ -2099,14 +2035,21 @@ void describeob(object_t *o) { if (mindam < 0) mindam = 0; if (maxdam < 0) maxdam = 0; + if (mindam == maxdam) { + sprintf(buf, "It inflicts %d %s damage",maxdam, getdamname(damtype)); + } else { + sprintf(buf, "It inflicts %d-%d %s damage",mindam,maxdam, getdamname(damtype)); + } if (f->val[2] == NA) { - mvwprintw(mainwin, y, 0, "It inflicts %d-%d %s damage (%dd%d).",mindam,maxdam, - getdamname(damtype), f->val[0], f->val[1]); + sprintf(dicebuf, " (%dd%d).", f->val[0], f->val[1]); } else { - mvwprintw(mainwin, y, 0, "It inflicts %d-%d %s damage (%dd%d%c%d).",mindam,maxdam, - getdamname(damtype), f->val[0], f->val[1], (f->val[2] > 0) ? '+' : '-', abs(f->val[2])); + sprintf(dicebuf, " (%dd%d%c%d).", f->val[0], f->val[1], + (f->val[2] > 0) ? '+' : '-', + abs(f->val[2])); } + strcat(buf,dicebuf); + mvwprintw(mainwin, y, 0, "%s",buf); y++; } else { mvwprintw(mainwin, y, 0, "It inflicts %s damage.",getdamname(damtype)); @@ -2198,9 +2141,21 @@ void describeob(object_t *o) { y++; } + // now special flags... y++; + f = hasflag(o->flags, F_MASTERWORK); + if (f && f->known) { + mvwprintw(mainwin, y, 0, "It is extremely well crafted."); + y++; + } + f = hasflag(o->flags, F_SHODDY); + if (f && f->known) { + mvwprintw(mainwin, y, 0, "It is very poorly crafted."); + y++; + } + f = hasflag(o->flags, F_ONFIRE); if (f) { mvwprintw(mainwin, y, 0, "It is on fire."); @@ -2436,7 +2391,7 @@ void describespell(objecttype_t *ot) { // properties - y = 4; + y = 5; f = hasflag(ot->flags, F_SPELLLEVEL); if (f) { flag_t *sf; @@ -2880,7 +2835,7 @@ void domagic(enum OBTYPE spellid, int cellx, int celly) { // add to list poss[nposs] = ot->id; mpcost[nposs] = cost; - sprintf(mpdesc[nposs], "(%d MP)", mpcost[nposs]); + sprintf(mpdesc[nposs], "(cost: %d MP)", mpcost[nposs]); if (player->mp >= cost) { validspell[nposs] = B_TRUE; } else { @@ -3529,13 +3484,16 @@ void drawscannedcell(cell_t *cell, int x, int y) { } */ -void downline(int *y, int h, char *heading, char *subheading) { +// returns TRUE if escape pressed +int downline(int *y, int h, char *heading, char *subheading) { char headbuf[BUFLEN]; + int ch; sprintf(headbuf, "%s (continued)", heading); (*y)++; if (*y >= (h-2)) { centre(mainwin, h-1, MORESTRING); - getch(); + ch = getch(); + if (getch() == 27) { return B_TRUE; } cls(); *y = 0; centre(mainwin, *y, headbuf); *y += 2; @@ -3544,6 +3502,7 @@ void downline(int *y, int h, char *heading, char *subheading) { doheading(mainwin, y, 0, subheading); } } + return B_FALSE; } @@ -4502,7 +4461,7 @@ void drawstatus(void) { char waitbuf[BUFLEN]; char pname[BUFLEN]; flag_t *f; - int str,dex,iq; + int str,dex,iq,con; getplayernamefull(pname); @@ -4599,14 +4558,16 @@ void drawstatus(void) { str = getattr(player, A_STR); dex = getattr(player, A_DEX); iq = getattr(player, A_IQ); + con = getattr(player, A_CON); //redraw(); - sprintf(buf, "HP:%d/%d MP:%d/%d %12sST:%2d%c DX:%2d%c IQ:%2d%c DLev:%2d", + sprintf(buf, "HP:%d/%d MP:%d/%d %12sST:%2d%c DX:%2d%c IQ:%2d%c CN:%2d%c DLev:%2d", player->hp,player->maxhp, player->mp, player->maxmp, " ", str, (str == player->baseatt[A_STR]) ? ' ' : '*', dex, (dex == player->baseatt[A_DEX]) ? ' ' : '*', iq, (iq == player->baseatt[A_IQ]) ? ' ' : '*', + con, (con == player->baseatt[A_CON]) ? ' ' : '*', player->cell->map->depth ); mvwprintw(statwin, 1, 0, buf); @@ -4938,6 +4899,25 @@ void showlfstats(lifeform_t *lf, int showall) { wprintw(mainwin, "%s", buf); y++; } + if (showall) { + char buf2[BUFLEN]; + int con; + con = getattr(lf, A_CON); + getconname(con, buf2); + sprintf(buf, "%d (%s)",con, buf2); + if (con != lf->baseatt[A_CON]) strcat(buf, "*"); + mvwprintw(mainwin, y, 0, ftext, "CON"); + wprintw(mainwin, "%s", buf); y++; + } else if (!isplayer(lf)) { + int con; + // just show name + con = getattr(lf, A_CON); + getconname(con, buf); + if (con != lf->baseatt[A_CON]) strcat(buf, "*"); + mvwprintw(mainwin, y, 0, ftext, "CON"); + wprintw(mainwin, "%s", buf); y++; + } + //mvwprintw(mainwin, y, 0, ftext, "XP"); //wprintw(mainwin, "%ld (%ld more for next level)", lf->xp, xpneeded); y++; @@ -5344,7 +5324,8 @@ void showlfstats(lifeform_t *lf, int showall) { // wait for key centre(mainwin, h-1, "[Press any key]"); - getch(); + if (getch() == 27) { drawscreen(); real_clearmsg(B_TRUE); return; } + if (showall) { int anyfound = B_FALSE; char subheading[BUFLEN]; @@ -5373,13 +5354,28 @@ void showlfstats(lifeform_t *lf, int showall) { } sprintf(buf, "%-12s%s%s", ot->name, ot->desc, expirebuf); mvwprintw(mainwin, y, 0, buf); - downline(&y, h, "ABILITIES", NULL); + if (downline(&y, h, "ABILITIES", NULL)) { + drawscreen(); real_clearmsg(B_TRUE); return; + } + } + } + } + y++; + + if (hasflag(lf->flags, F_HASSKILL)) { + centre(mainwin, y, "SKILLS"); y += 2; + for (f = lf->flags->first ; f ; f = f->next) { + if (f->id == F_HASSKILL) { + mvwprintw(mainwin, y, 0, "- %s %s",getskilllevelname(f->val[1]), getskillname(f->val[0])); + if (downline(&y, h, "SKILLS", NULL)) { + drawscreen(); real_clearmsg(B_TRUE); return; + } } } } centre(mainwin, h-1, "[Press any key]"); - getch(); + if (getch() == 27) { drawscreen(); real_clearmsg(B_TRUE); return; } cls(); y = 0; //wmove(mainwin, y, 0); centre(mainwin, y, "SPELLS"); y += 2; @@ -5408,7 +5404,9 @@ void showlfstats(lifeform_t *lf, int showall) { sprintf(buf, " %-4d%-25s%-22s%s",thislev, ot->name, getschoolname(getspellschool(ot->id)), mpbuf); mvwprintw(mainwin, y, 0, "%s\n", buf); anyfound = B_TRUE; - downline(&y, h, "SPELLS", subheading); + if (downline(&y, h, "SPELLS", subheading)) { + drawscreen(); real_clearmsg(B_TRUE); return; + } } } } @@ -5420,7 +5418,7 @@ void showlfstats(lifeform_t *lf, int showall) { //} centre(mainwin, h-1, "[Press any key]"); - getch(); + if (getch() == 27) { drawscreen(); real_clearmsg(B_TRUE); return; } cls(); y = 0; x = 0; // override @@ -5630,7 +5628,7 @@ void showlfstats(lifeform_t *lf, int showall) { // wait for key centre(mainwin, h-1, "[Press any key]"); - getch(); + if (getch() == 27) { drawscreen(); real_clearmsg(B_TRUE); return; } } if (!isplayer(lf) && showall) { @@ -5649,7 +5647,7 @@ void showlfstats(lifeform_t *lf, int showall) { if (y >= (h-3) && (o->next)) { // wait for key centre(mainwin, h-1, "-- More --"); - getch(); + if (getch() == 27) { drawscreen(); real_clearmsg(B_TRUE); return; } cls(); centre(mainwin, 0, "INVENTORY"); y = 2; @@ -5657,7 +5655,7 @@ void showlfstats(lifeform_t *lf, int showall) { } // wait for key centre(mainwin, h-1, "[Press any key]"); - getch(); + if (getch() == 27) { drawscreen(); real_clearmsg(B_TRUE); return; } } drawscreen(); diff --git a/io.h b/io.h index 535e7ea..2d1760e 100644 --- a/io.h +++ b/io.h @@ -12,11 +12,11 @@ int announceflaggain(lifeform_t *lf, flag_t *f); int announceflagloss(lifeform_t *lf, flag_t *f); int announceobflaggain(object_t *o, flag_t *f); void announceobflagloss(object_t *o, flag_t *f); -object_t *askobject(obpile_t *op, char *title, int *count, int opts); -object_t *askobjectwithflag(obpile_t *op, char *title, int *count, int opts, enum FLAG withflag); -object_t *askobjectofclass(obpile_t *op, char *title, int *count, int opts, enum OBCLASS obclass); -object_t *doaskobject(obpile_t *op, char *title, int *count, int opts, enum FLAG withflag, ...); -int askobjectmulti(obpile_t *op, char *prompt, int opts); +object_t *askobject(obpile_t *op, char *title, int *count, long opts); +object_t *askobjectwithflag(obpile_t *op, char *title, int *count, long opts, enum FLAG withflag); +object_t *askobjectofclass(obpile_t *op, char *title, int *count, long opts, enum OBCLASS obclass); +object_t *doaskobject(obpile_t *op, char *title, int *count, long opts, enum FLAG withflag, ...); +int askobjectmulti(obpile_t *op, char *prompt, long opts); char askchar(char *prompt, char *validchars, char *def, int showchars); cell_t *askcoords(char *prompt, int targettype); char *askstring(char *prompt, char punc, char *retbuf, int retbuflen, char *def); @@ -59,7 +59,7 @@ void dothrow(obpile_t *op); void dovendingmachine(lifeform_t *lf, object_t *vm); int dowear(obpile_t *op); int doweild(obpile_t *op); -void downline(int *y, int h, char *heading, char *subheading); +int downline(int *y, int h, char *heading, char *subheading); void drawunviscell(cell_t *cell, int x, int y); void drawcellwithcontents(cell_t *cell, int x, int y); void drawcursor(void); diff --git a/lf.c b/lf.c index 28ed67f..88ce9b2 100644 --- a/lf.c +++ b/lf.c @@ -19,6 +19,7 @@ extern map_t *firstmap; extern race_t *firstrace, *lastrace; extern job_t *firstjob, *lastjob; +extern skill_t *firstskill, *lastskill; extern objecttype_t *objecttype; extern lifeform_t *player; @@ -197,7 +198,37 @@ race_t *addrace(enum RACE id, char *name, float weight, char glyph, enum MATERIA return a; } +skill_t *addskill(enum SKILL id, char *name, char *desc) { + skill_t *a; + + assert(!findskill(id)); + + // add to the end of the list + if (firstskill == NULL) { + firstskill = malloc(sizeof(skill_t)); + a = firstskill; + a->prev = NULL; + } else { + // go to end of list + a = lastskill; + a->next = malloc(sizeof(skill_t)); + a->next->prev = a; + a = a->next; + } + lastskill = a; + a->next = NULL; + + + // props + a->id = id; + a->name = strdup(name); + a->desc = strdup(desc); + + return a; +} + void adjustdamlf(lifeform_t *lf, int *amt, enum DAMTYPE damtype) { + flag_t *f; if (isimmuneto(lf->flags, damtype)) { *amt = 0; return; @@ -227,8 +258,15 @@ void adjustdamlf(lifeform_t *lf, int *amt, enum DAMTYPE damtype) { if (isresistantto(lf->flags, damtype)) { (*amt) /= 2; } - if (isvulnto(lf->flags, damtype)) { - (*amt) *= 2; + f = isvulnto(lf->flags, damtype); + if (f) { + if ((*amt == 0) && strlen(f->text)) { + int ndice,nsides,bonus; + texttodice(f->text, &ndice,&nsides,&bonus); + *amt = rolldie(ndice,nsides) + bonus; + } else { + (*amt) *= 2; + } } @@ -1392,6 +1430,17 @@ race_t *findracebyname(char *name) { } +skill_t *findskill(enum SKILL id) { + skill_t *r; + for (r = firstskill; r ; r = r->next) { + if (r->id == id) { + return r; + } + } + + return NULL; +} + // returns TRUE if we ran away from something int flee(lifeform_t *lf) { flag_t *f, *nextf; @@ -1529,15 +1578,38 @@ void gainlevel(lifeform_t *lf) { lf->mp = mpratio * (float)lf->maxmp; } + // TODO: new skill + if (isplayer(lf)) { + enum SKILL whichsk; + flag_t *f; + char ch = 'a'; + + initprompt(&prompt, "Which skill will you increase?"); + + for (f = lf->flags->first ; f ; f = f->next) { + if ((f->id == F_HASSKILL) && (f->val[1] != PR_MASTER)) { + char buf[BUFLEN]; + sprintf(buf, "%s (%s -> %s)", getskillname(f->val[0]), + getskilllevelname(f->val[1]), getskilllevelname(f->val[1] + 1)); + addchoice(&prompt, ch++, buf, buf, f); + } + } + getchoice(&prompt); + f = (flag_t *)prompt.result; + whichsk = f->val[0]; + giveskill(lf, whichsk); + } + // stat gain if ((lf->level % 3) == 0) { enum ATTRIB att; if (isplayer(lf)) { char ch; - ch = askchar("Increase your Strength, Dexterity or Intelligence?", "sdi",NULL, B_TRUE); + ch = askchar("Increase your Strength, Dexterity, Constitution or Intelligence?", "sdci",NULL, B_TRUE); switch (ch) { case 's': att = A_STR; break; case 'd': att = A_DEX; break; + case 'c': att = A_CON; break; case 'i': att = A_IQ; break; } } else { @@ -1547,6 +1619,10 @@ void gainlevel(lifeform_t *lf) { modattr(lf, att, 1); } + + // you can now re-attempt identification of objects + killflagsofid(lf->flags, F_FAILEDINSPECT); + // TODO: hand out effects based on job } @@ -2134,7 +2210,7 @@ enum LFCONDITION getlfcondition(lifeform_t *lf) { int getnightvisrange(lifeform_t *lf) { - int range = 1; // default + int range = 0; // default flag_t *f; f = lfhasflag(lf, F_SEEINDARK); @@ -2234,6 +2310,8 @@ float getmaxcarryweight(lifeform_t *lf) { mod = 1.5; break; case ST_TITANIC: mod = 2; break; // twice your own body weight + default: + mod = 1; break; // your body weight } max = getlfweight(lf, B_NOOBS) * mod; @@ -2365,8 +2443,11 @@ char *getmoveverbother(lifeform_t *lf) { return "walks"; } - char *getlfname(lifeform_t *lf, char *buf) { + return real_getlfname(lf, buf, B_TRUE); +} + +char *real_getlfname(lifeform_t *lf, char *buf, int usevis) { char descstring[BUFLEN]; char jobstring[BUFLEN]; job_t *j; @@ -2392,7 +2473,8 @@ char *getlfname(lifeform_t *lf, char *buf) { if (lf == player) { sprintf(buf, "you"); } else { - if (isblind(player)) { + //if (isblind(player)) { + if (usevis && !haslos(player, lf->cell)) { sprintf(buf, "something"); } else { if (lf->race->id == R_DANCINGWEAPON) { @@ -2571,7 +2653,7 @@ race_t *getrandomrace(map_t *map) { race_t *poss[MAXRANDOMLFCANDIDATES]; int nposs = 0; int selidx; - int db = B_FALSE; + int db = B_TRUE; int depth; int raritymin,raritymax; @@ -2672,6 +2754,16 @@ race_t *getreallyrandomrace(void) { return r; } +// returns proficiency level in a given skill +enum SKILLLEVEL getskill(lifeform_t *lf, enum SKILL id) { + flag_t *f; + f = lfhasflagval(lf, F_HASSKILL, id, NA, NA, NULL); + if (f) { + return f->val[1]; + } + return PR_INEPT; +} + char *getspeedname(int speed, char *buf) { sprintf(buf, "unknownspeed"); if (speed <= SP_GODLIKE) { @@ -2778,6 +2870,37 @@ float getstatmod(lifeform_t *lf, enum ATTRIB att) { return mod; } +enum CONBRACKET getconname(int str, char *buf) { + if (str <= 2) { + if (buf) strcpy(buf, "frail"); + return CN_FRAIL; + } else if (str <= 4) { + if (buf) strcpy(buf, "sickly"); + return CN_SICKLY; + } else if (str <= 6) { + if (buf) strcpy(buf, "unhealthy"); + return CN_UNHEALTHY; + } else if (str <= 8) { + if (buf) strcpy(buf, "unfit"); + return CN_UNFIT; + } else if (str <= 11) { + if (buf) strcpy(buf, "average"); + return CN_AVERAGE; + } else if (str <= 14) { + if (buf) strcpy(buf, "healthy"); + return CN_HEALTHY; + } else if (str <= 16) { + if (buf) strcpy(buf, "very fit"); + return CN_FIT; + } else if (str <= 18) { + if (buf) strcpy(buf, "hardy"); + return CN_HARDY; + } + + if (buf) strcpy(buf, "hardy"); + return CN_HARDY; +} + enum STRBRACKET getstrname(int str, char *buf) { if (str <= 0) { if (buf) strcpy(buf, "helpless"); @@ -2806,6 +2929,45 @@ enum STRBRACKET getstrname(int str, char *buf) { return ST_TITANIC; } +char *getskilldesc(enum SKILL id) { + skill_t *s; + s = findskill(id); + if (s) { + return s->desc; + } + return "?unknownskilldesc?"; +} + +char *getskillname(enum SKILL id) { + skill_t *s; + s = findskill(id); + if (s) { + return s->name; + } + return "?unknownskill?"; +} + +char *getskilllevelname(enum SKILLLEVEL sl) { + switch (sl) { + case PR_INEPT: + return "Inept"; + case PR_NOVICE: + return "Novice"; + case PR_BEGINNER: + return "Beginner"; + case PR_ADEPT: + return "Adept"; + case PR_SKILLED: + return "Skilled"; + case PR_EXPERT: + return "Expert"; + case PR_MASTER: + return "Master"; + } + return "?Unknownskilllevel?"; +} + + // get throw speed (ie. damage multiplier) // based on strength. int getthrowspeed(int str) { @@ -2821,6 +2983,7 @@ int getthrowspeed(int str) { case ST_WEAK: speed = 1; break; + default: case ST_AVERAGE: case ST_STRONG: speed = 2; @@ -2976,18 +3139,18 @@ void givejob(lifeform_t *lf, enum JOB jobid) { } */ addflag_real(lf->flags, f->id, f->val[0], f->val[1], f->val[2], f->text, FROMJOB,B_TRUE, -1); - if (f->id == F_STARTSTR) rollatt[A_STR] = B_TRUE; - if (f->id == F_STARTDEX) rollatt[A_DEX] = B_TRUE; - if (f->id == F_STARTIQ) rollatt[A_IQ] = B_TRUE; + if (f->id == F_STARTATT) { + rollatt[f->val[0]] = B_TRUE; + } } ignoredprev = B_FALSE; } } - // now give start obs from it + // now give start obs/skills from it givestartobs(lf, lf->flags); - + givestartskills(lf, lf->flags); // override hp/mp from race @@ -3097,6 +3260,39 @@ void giveobflags(lifeform_t *lf, object_t *o, enum FLAG whattype) { } +int giveskill(lifeform_t *lf, enum SKILL id) { + flag_t *f; + skill_t *sk; + + sk = findskill(id); + if (!sk) { + return B_TRUE; + } + + f = lfhasflagval(lf, F_HASSKILL, id, NA, NA, NULL); + if (f) { + // already have the skill - make it better + if (f->val[1] < PR_MASTER) { + f->val[1] ++; + } + if (isplayer(lf) && gamestarted) { + msg("You have learned the %s %s skill!", getskilllevelname(f->val[1]), getskillname(sk->id)); + } + } else { + // gaining a new skill + addflag(lf->flags, F_HASSKILL, id, PR_NOVICE, NA, NULL); + if (isplayer(lf) && gamestarted) { + msg("You have learned the %s %s skill!", getskilllevelname(PR_NOVICE), getskillname(sk->id)); + } + + // special effects... + if (id == SK_RESEARCH) { + addflag(lf->flags, F_CANWILL, OT_A_INSPECT, NA, NA, NULL); + } + } + return B_FALSE; +} + // give start objects from a particular flagpile void givestartobs(lifeform_t *lf, flagpile_t *fp) { object_t *o; @@ -3165,6 +3361,22 @@ void givestartobs(lifeform_t *lf, flagpile_t *fp) { killflagsofid(fp, F_STARTOBCLASS); } +void givestartskills(lifeform_t *lf, flagpile_t *fp) { + flag_t *f; + for (f = fp->first ; f ; f = f->next) { + if (f->id == F_STARTSKILL) { + int wantval; + wantval = f->val[1]; + while (getskill(lf, f->val[0]) < wantval) { + giveskill(lf, f->val[0]); + } + } + } + // now remove startskill flags so we don't get them again! + killflagsofid(fp, F_STARTSKILL); +} + + job_t *hasjob(lifeform_t *lf, enum JOB job) { job_t *j = NULL; if (lfhasflagval(lf, F_JOB, job, NA, NA, NULL)) { @@ -3357,8 +3569,6 @@ flag_t *lfhasknownflagval(lifeform_t *lf, enum FLAG fid, int val0, int val1, int // return true on failure int lockpick(lifeform_t *lf, object_t *target, object_t *device) { - int successchance; - int roll; flag_t *f; char lfname[BUFLEN]; char obname[BUFLEN]; @@ -3369,14 +3579,13 @@ int lockpick(lifeform_t *lf, object_t *target, object_t *device) { f = hasflag(device->flags, F_PICKLOCKS); assert(f); - successchance = f->val[0] + getstatmod(lf, A_DEX); faileffect = f->val[1]; // take time taketime(lf, getactspeed(lf) ); - - roll = rnd(1,100); - if (roll <= successchance) { + + // TODO: different difficulty based on doors (maybe part of F_LOCKED flag) + if (skillcheck(lf, SC_OPENLOCKS, 15, f->val[0])) { // success! // announce if (isplayer(lf) || haslos(player, lf->cell)) { @@ -3826,8 +4035,10 @@ int hasmr(lifeform_t *lf) { return B_FALSE; } + void initjobs(void) { int i; + skill_t *sk; // job definitions // NOTE: try to always make the job's weapon be the first object defined. // this will make sure that they have the letter 'a'. @@ -3846,6 +4057,10 @@ void initjobs(void) { addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "a digital watch"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "10 blessed scrolls of create monster"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "ring of invulnerability"); + // gods have all skills + for (sk = firstskill ; sk ; sk = sk->next) { + addflag(lastjob->flags, F_STARTSKILL, sk->id, PR_NOVICE, NA, NULL); + } // gods may use all abilities and cast any spell at will for (i = SS_NONE+1; i < SS_LAST; i++) { if (i == SS_ABILITY) { @@ -3861,10 +4076,8 @@ void initjobs(void) { addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "10 gold coins"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "3 potions of healing"); addflag(lastjob->flags, F_MPDICE, 1, NA, NA, NULL); - addflag(lastjob->flags, F_STARTSTR, ST_AVERAGE, NA, NA, NULL); - addflag(lastjob->flags, F_STARTDEX, ST_AVERAGE, NA, NA, NULL); - addflag(lastjob->flags, F_STARTIQ, IQ_AVERAGE, NA, NA, NULL); addflag(lastjob->flags, F_CANWILL, OT_A_SPRINT, 3, 3, NULL); + addflag(lastjob->flags, F_STARTSKILL, SK_LOCKPICKING, PR_NOVICE, NA, NULL); addjob(J_ALLOMANCER, "Allomancer"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "1 gold coins"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "club"); @@ -3873,11 +4086,12 @@ void initjobs(void) { addflag(lastjob->flags, F_MPDICE, 1, 1, NA, NULL); //addflag(lastjob->flags, F_MPDICE, 5, 6, NA, NULL); addflag(lastjob->flags, F_CANCAST, OT_S_ABSORBMETAL, NA, NA, NULL); - addflag(lastjob->flags, F_STARTSTR, ST_AVERAGE, NA, NA, NULL); - addflag(lastjob->flags, F_STARTDEX, DX_DEXTROUS, NA, NA, NULL); - addflag(lastjob->flags, F_STARTIQ, IQ_AVERAGE, NA, NA, NULL); + addflag(lastjob->flags, F_STARTATT, A_STR, ST_AVERAGE, NA, NULL); + addflag(lastjob->flags, F_STARTATT, A_DEX, DX_DEXTROUS, NA, NULL); + addflag(lastjob->flags, F_STARTATT, A_IQ, IQ_AVERAGE, NA, NULL); addflag(lastjob->flags, F_DETECTMETAL, B_TRUE, NA, NA, NULL); mayusespellschool(lastjob->flags, SS_ALLOMANCY, F_CANCAST); + addflag(lastjob->flags, F_STARTSKILL, SK_LOCKPICKING, PR_NOVICE, NA, NULL); addjob(J_PLUMBER, "Plumber"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "spanner"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "10 gold coins"); @@ -3897,6 +4111,8 @@ void initjobs(void) { addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "silk shirt"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "riding trousers"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "leather boots"); + // TODO skill: court knowledge ?? + // TODO skill: bartering 2 addjob(J_COMMANDO, "Commando"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "combat knife"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "revolver"); @@ -3910,8 +4126,9 @@ void initjobs(void) { addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "1-3 flashbangs"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "digital watch"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "10 bullets"); - addflag(lastjob->flags, F_STARTSTR, ST_STRONG, NA, NA, NULL); - addflag(lastjob->flags, F_STARTIQ, IQ_DOPEY, NA, NA, NULL); + addflag(lastjob->flags, F_STARTATT, A_STR, ST_STRONG, NA, NULL); + addflag(lastjob->flags, F_STARTATT, A_IQ, IQ_DOPEY, NA, NULL); + // TODO skill: athletics 2 addjob(J_WIZARD, "Wizard"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "knife"); addflag(lastjob->flags, F_STARTOB, 100, NA, NA, "robe"); @@ -3930,14 +4147,15 @@ void initjobs(void) { addflag(lastjob->flags, F_ENDIFMONSTER, NA, NA, NA, NULL); addflag(lastjob->flags, F_HITDICE, 1, 1, NA, NULL); // low hp addflag(lastjob->flags, F_MPDICE, 2, 1, NA, NULL); - addflag(lastjob->flags, F_STARTSTR, ST_WEAK, NA, NA, NULL); - addflag(lastjob->flags, F_STARTDEX, DX_AVERAGE, NA, NA, NULL); - addflag(lastjob->flags, F_STARTIQ, IQ_ENLIGHTENED, NA, NA, NULL); + addflag(lastjob->flags, F_STARTATT, A_STR, ST_WEAK, NA, NULL); + addflag(lastjob->flags, F_STARTATT, A_DEX, DX_AVERAGE, NA, NULL); + addflag(lastjob->flags, F_STARTATT, A_IQ, IQ_ENLIGHTENED, NA, NULL); // wizard heals slowly, but regenerates mp addflag(lastjob->flags, F_RESTHEALTIME, 6, NA, NA, NULL); addflag(lastjob->flags, F_MPREGEN, 1, NA, NA, NULL); // can detect magic objects addflag(lastjob->flags, F_DETECTMAGIC, B_TRUE, NA, NA, NULL); + // TODO skill: magic knowledge // for monster wizards only: addflag(lastjob->flags, F_IFMONSTER, NA, NA, NA, NULL); addflag(lastjob->flags, F_IFPCT, 50, NA, NA, NULL); @@ -3962,7 +4180,7 @@ void initrace(void) { addrace(R_HUMAN, "human", 75, '@', MT_FLESH); addflag(lastrace->flags, F_RARITY, H_DUNGEON, 60, NA, NULL); addflag(lastrace->flags, F_SIZE, SZ_HUMAN, NA, NA, NULL); - addflag(lastrace->flags, F_HITDICE, 3, 4, NA, NULL); + addflag(lastrace->flags, F_HITDICE, 2, 2, NA, NULL); addflag(lastrace->flags, F_EVASION, 0, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, NULL); @@ -3990,7 +4208,7 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_HASATTACK, 1, 10, NA, "claws"); - addflag(lastrace->flags, F_STARTSTR, ST_STRONG, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_STRONG, NA, NULL); addflag(lastrace->flags, F_STARTOB, 50, NA, NA, "heavy flail"); addflag(lastrace->flags, F_STARTOBCLASS, 50, OC_ARMOUR, NA, NULL); addflag(lastrace->flags, F_STARTOBCLASS, 50, OC_ARMOUR, NA, NULL); @@ -3999,8 +4217,37 @@ void initrace(void) { addflag(lastrace->flags, F_SEEINDARK, 3, NA, NA, NULL); addflag(lastrace->flags, F_CANWILL, OT_A_HEAVYBLOW, 2, 2, NULL); + addrace(R_DARKMANTLE, "darkmantle", 70, 'Q', MT_FLESH); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_ANIMAL, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_MIGHTY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_SUPERSONIC, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_CON, CN_HARDY, NA, NULL); + addflag(lastrace->flags, F_HOSTILE, B_TRUE, NA, NA, NULL); + addflag(lastrace->flags, F_RARITY, H_DUNGEON, 50, NA, NULL); + addflag(lastrace->flags, F_SIZE, SZ_LARGE, NA, NA, NULL); + addflag(lastrace->flags, F_HITDICE, 9, NA, NA, NULL); + addflag(lastrace->flags, F_ARMOURRATING, 10, NA, NA, NULL); + addflag(lastrace->flags, F_EVASION, 15, NA, NA, NULL); + addflag(lastrace->flags, F_FLYING, B_TRUE, NA, NA, ""); + addflag(lastrace->flags, F_MOVESPEED, SP_VERYSLOW, NA, NA, NULL); + addflag(lastrace->flags, F_SPELLSPEED, SP_VERYSLOW, NA, NA, NULL); + addflag(lastrace->flags, F_ACTIONSPEED, SP_VERYSLOW, NA, NA, ""); + addflag(lastrace->flags, F_CANWILL, OT_S_DARKNESS, 7, 7, NULL); + addflag(lastrace->flags, F_CANWILL, OT_A_GRAB, NA, NA, NULL); + addflag(lastrace->flags, F_CANWILL, OT_A_CRUSH, NA, NA, NULL); + addflag(lastrace->flags, F_SPELLCASTTEXT, NA, NA, NA, "waves its tentacles"); + addflag(lastrace->flags, F_HASATTACK, 2, 6, NA, "tentacle"); + addflag(lastrace->flags, F_NOBODYPART, BP_WEAPON, NA, NA, NULL); + addflag(lastrace->flags, F_NOBODYPART, BP_SECWEAPON, NA, NA, NULL); + addflag(lastrace->flags, F_NOBODYPART, BP_SHOULDERS, NA, NA, NULL); + addflag(lastrace->flags, F_NOBODYPART, BP_HANDS, NA, NA, NULL); + addflag(lastrace->flags, F_NOBODYPART, BP_LEGS, NA, NA, NULL); + addflag(lastrace->flags, F_NOPACK, B_TRUE, NA, NA, NULL); + addflag(lastrace->flags, F_SEEINDARK, UNLIMITED, NA, NA, NULL); + addflag(lastrace->flags, F_DTVULN, DT_LIGHT, NA, NA, "0d6+5"); + addrace(R_EYEBAT, "eyebat", 5, 'e', MT_FLESH); - addflag(lastrace->flags, F_STARTIQ, IQ_SMART, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_SMART, NA, NULL); addflag(lastrace->flags, F_HOSTILE, B_TRUE, NA, NA, NULL); addflag(lastrace->flags, F_RARITY, H_DUNGEON, 50, NA, NULL); addflag(lastrace->flags, F_SIZE, SZ_SMALL, NA, NA, NULL); @@ -4044,9 +4291,9 @@ void initrace(void) { addflag(lastrace->flags, F_STARTOBCLASS, 65, OC_ARMOUR, NA, NULL); addflag(lastrace->flags, F_STARTOBCLASS, 30, OC_POTION, NA, NULL); addflag(lastrace->flags, F_STARTOBCLASS, 30, OC_POTION, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_MIGHTY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_DOPEY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_CLUMSY, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_MIGHTY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DOPEY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_CLUMSY, NA, NULL); addflag(lastrace->flags, F_NOISETEXT, N_GETANGRY, NA, NA, "bellows^a bellow"); addflag(lastrace->flags, F_CANWILL, OT_A_HEAVYBLOW, NA, NA, NULL); addflag(lastrace->flags, F_FLEEONHPPCT, 50, NA, NA, NULL); @@ -4074,9 +4321,9 @@ void initrace(void) { addflag(lastrace->flags, F_STARTOBCLASS, 70, OC_ARMOUR, NA, NULL); addflag(lastrace->flags, F_STARTOBCLASS, 30, OC_POTION, NA, NULL); addflag(lastrace->flags, F_STARTOBCLASS, 30, OC_POTION, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_MIGHTY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_AVERAGE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_AVERAGE, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_MIGHTY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_AVERAGE, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_AVERAGE, NA, NULL); addflag(lastrace->flags, F_NOISETEXT, N_GETANGRY, NA, NA, "bellows^a bellow"); addflag(lastrace->flags, F_FLEEONHPPCT, 50, NA, NA, NULL); @@ -4101,9 +4348,9 @@ void initrace(void) { addflag(lastrace->flags, F_STARTOBCLASS, 70, OC_ARMOUR, NA, NULL); addflag(lastrace->flags, F_STARTOBCLASS, 30, OC_POTION, NA, NULL); addflag(lastrace->flags, F_STARTOBCLASS, 30, OC_POTION, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_MIGHTY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_AVERAGE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_DEXTROUS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_MIGHTY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_AVERAGE, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_DEXTROUS, NA, NULL); addflag(lastrace->flags, F_NOISETEXT, N_GETANGRY, NA, NA, "bellows^a bellow"); addflag(lastrace->flags, F_FLEEONHPPCT, 50, NA, NA, NULL); addflag(lastrace->flags, F_MPDICE, 0, 9, NA, NULL); @@ -4130,9 +4377,9 @@ void initrace(void) { addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "flaming greatsword"); addflag(lastrace->flags, F_STARTOBCLASS, 30, OC_POTION, NA, NULL); addflag(lastrace->flags, F_STARTOBCLASS, 30, OC_POTION, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_MIGHTY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_AVERAGE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_SWIFT, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_MIGHTY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_AVERAGE, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_SWIFT, NA, NULL); addflag(lastrace->flags, F_NOISETEXT, N_GETANGRY, NA, NA, "bellows^a bellow"); addflag(lastrace->flags, F_FLEEONHPPCT, 50, NA, NA, NULL); addflag(lastrace->flags, F_HEAVYBLOW, B_TRUE, NA, NA, NULL); @@ -4152,9 +4399,9 @@ void initrace(void) { addflag(lastrace->flags, F_EVASION, 10, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_FAST, NA, NA, ""); - addflag(lastrace->flags, F_STARTIQ, IQ_AVERAGE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_DEXTROUS, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_STRONG, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_AVERAGE, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_DEXTROUS, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_STRONG, NA, NULL); addflag(lastrace->flags, F_HASATTACK, 1, 6, 4, "claws"); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "leather armour"); addflag(lastrace->flags, F_STARTOB, 50, NA, NA, "1-40 gold coins"); @@ -4174,9 +4421,9 @@ void initrace(void) { addflag(lastrace->flags, F_EVASION, 0, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); - addflag(lastrace->flags, F_STARTIQ, IQ_DOPEY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_DEXTROUS, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_STRONG, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DOPEY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_DEXTROUS, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_STRONG, NA, NULL); addflag(lastrace->flags, F_HASATTACK, 1, 6, 4, "claws"); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "leather armour"); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "longbow"); @@ -4198,9 +4445,9 @@ void initrace(void) { addflag(lastrace->flags, F_EVASION, 0, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); - addflag(lastrace->flags, F_STARTIQ, IQ_DOPEY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_DEXTROUS, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_STRONG, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DOPEY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_DEXTROUS, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_STRONG, NA, NULL); addflag(lastrace->flags, F_HASATTACK, 1, 4, 2, "claws"); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "leather armour"); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "spear"); @@ -4219,9 +4466,9 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_HASATTACK, 1, 4, NA, "claws"); - addflag(lastrace->flags, F_STARTIQ, IQ_DOPEY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_AVERAGE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_DEXTROUS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DOPEY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_AVERAGE, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_DEXTROUS, NA, NULL); addflag(lastrace->flags, F_STARTOB, 50, NA, NA, "short sword"); addflag(lastrace->flags, F_STARTOBCLASS, 40, OC_POTION, NA, NULL); addflag(lastrace->flags, F_WANTSBETTERWEP, B_TRUE, B_COVETS, NA, NULL); @@ -4244,9 +4491,9 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_HASATTACK, 1, 4, NA, "claws"); - addflag(lastrace->flags, F_STARTIQ, IQ_DOPEY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_AVERAGE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_DEXTROUS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DOPEY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_AVERAGE, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_DEXTROUS, NA, NULL); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "spear"); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "1-5 javelins"); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "leather armour"); @@ -4266,9 +4513,9 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_HASATTACK, 1, 4, NA, "claws"); - addflag(lastrace->flags, F_STARTIQ, IQ_DOPEY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_AVERAGE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_DEXTROUS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DOPEY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_AVERAGE, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_DEXTROUS, NA, NULL); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "short sword"); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "hand crossbow"); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "1-15 bolts"); @@ -4291,9 +4538,9 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_SLOW, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_HASATTACK, 1, 4, NA, "claws"); - addflag(lastrace->flags, F_STARTIQ, IQ_AVERAGE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_AVERAGE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_DEXTROUS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_AVERAGE, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_AVERAGE, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_DEXTROUS, NA, NULL); addflag(lastrace->flags, F_STARTOB, 80, NA, NA, "club"); addflag(lastrace->flags, F_STARTOB, 80, NA, NA, "leather armour"); addflag(lastrace->flags, F_NOISETEXT, N_GETANGRY, NA, NA, "shouts^a shout"); @@ -4316,9 +4563,9 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_HASATTACK, 1, 6, NA, "claws"); - addflag(lastrace->flags, F_STARTIQ, IQ_SMART, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_MIGHTY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_DEXTROUS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_SMART, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_MIGHTY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_DEXTROUS, NA, NULL); addflag(lastrace->flags, F_STARTOB, 80, NA, NA, "longsword"); addflag(lastrace->flags, F_STARTOB, 50, NA, NA, "buckler"); addflag(lastrace->flags, F_STARTOBCLASS, 100, OC_ARMOUR, NA, NULL); @@ -4342,9 +4589,9 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_HASATTACK, 1, 6, NA, "claws"); - addflag(lastrace->flags, F_STARTIQ, IQ_SMART, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_MIGHTY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_DEXTROUS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_SMART, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_MIGHTY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_DEXTROUS, NA, NULL); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "flail"); addflag(lastrace->flags, F_STARTOB, 90, NA, NA, "large shield"); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "scale armour"); @@ -4370,9 +4617,9 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_HASATTACK, 0, 1, 4, "claws"); - addflag(lastrace->flags, F_STARTSTR, ST_WEAK, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_DOPEY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_NIMBLE, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_WEAK, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DOPEY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_NIMBLE, NA, NULL); addflag(lastrace->flags, F_STARTOBDT, 20, DT_PIERCE, NA, NULL); addflag(lastrace->flags, F_STARTOBCLASS, 40, OC_POTION, NA, NULL); addflag(lastrace->flags, F_STARTOB, 50, NA, NA, "1-5 darts"); @@ -4393,9 +4640,9 @@ void initrace(void) { addflag(lastrace->flags, F_ARMOURRATING, 10, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_FAST, NA, NA, ""); - addflag(lastrace->flags, F_STARTSTR, ST_MIGHTY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_DIMWITTED, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_AVERAGE, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_MIGHTY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DIMWITTED, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_AVERAGE, NA, NULL); addflag(lastrace->flags, F_HASATTACK, 1, 2, 0, "fists"); addflag(lastrace->flags, F_HASATTACK, 1, 2, 0, "tail"); addflag(lastrace->flags, F_STARTOB, 50, NA, NA, "club"); @@ -4414,9 +4661,9 @@ void initrace(void) { addflag(lastrace->flags, F_EVASION, 15, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_FAST, NA, NA, ""); - addflag(lastrace->flags, F_STARTSTR, ST_MIGHTY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_DOPEY, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_DEXTROUS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_MIGHTY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DOPEY, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_DEXTROUS, NA, NULL); addflag(lastrace->flags, F_HASATTACK, 1, 5, 1, "claws"); addflag(lastrace->flags, F_HASATTACK, 1, 4, 0, "tail"); addflag(lastrace->flags, F_STARTOB, 50, NA, NA, "spear"); @@ -4433,7 +4680,7 @@ void initrace(void) { addflag(lastrace->flags, F_EVASION, 0, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_SLOW, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); - addflag(lastrace->flags, F_STARTIQ, IQ_MINDLESS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_MINDLESS, NA, NULL); addflag(lastrace->flags, F_NOBODYPART, BP_WEAPON, NA, NA, NULL); addflag(lastrace->flags, F_NOBODYPART, BP_SECWEAPON, NA, NA, NULL); addflag(lastrace->flags, F_NOBODYPART, BP_RIGHTHAND, NA, NA, NULL); @@ -4457,9 +4704,9 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_HASATTACK, 2, 4, 0, "fists"); - addflag(lastrace->flags, F_STARTIQ, IQ_STUPID, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_AVERAGE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_MIGHTY, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_STUPID, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_AVERAGE, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_MIGHTY, NA, NULL); addflag(lastrace->flags, F_WANTSBETTERWEP, B_TRUE, B_COVETS, NA, NULL); addflag(lastrace->flags, F_WANTS, OT_GOLD, B_COVETS, NA, NULL); addflag(lastrace->flags, F_WANTSOBFLAG, F_EDIBLE, B_COVETS, NA, NULL); @@ -4480,9 +4727,9 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_HASATTACK, 3, 4, 0, "claws"); - addflag(lastrace->flags, F_STARTIQ, IQ_STUPID, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_AVERAGE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_MIGHTY, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_STUPID, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_AVERAGE, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_MIGHTY, NA, NULL); addflag(lastrace->flags, F_WANTSBETTERWEP, B_TRUE, NA, NA, NULL); addflag(lastrace->flags, F_WANTS, OT_GOLD, NA, NA, NULL); addflag(lastrace->flags, F_WANTSOBFLAG, F_EDIBLE, NA, NA, NULL); @@ -4503,9 +4750,9 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_HASATTACK, 2, 4, NA, "fists"); - addflag(lastrace->flags, F_STARTIQ, IQ_STUPID, NA, NA, NULL); - addflag(lastrace->flags, F_STARTDEX, DX_AVERAGE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_MIGHTY, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_STUPID, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_DEX, DX_AVERAGE, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_MIGHTY, NA, NULL); addflag(lastrace->flags, F_WANTSBETTERWEP, B_TRUE, NA, NA, NULL); addflag(lastrace->flags, F_WANTS, OT_GOLD, NA, NA, NULL); addflag(lastrace->flags, F_WANTSOBFLAG, F_EDIBLE, NA, NA, NULL); @@ -4525,7 +4772,7 @@ void initrace(void) { addflag(lastrace->flags, F_ARMOURRATING, 5, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); - addflag(lastrace->flags, F_STARTIQ, IQ_DOPEY, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DOPEY, NA, NULL); addflag(lastrace->flags, F_HASATTACK, 1, 4, 0, "claws"); addflag(lastrace->flags, F_IFPCT, 70, NA, NA, NULL); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "club"); @@ -4543,7 +4790,7 @@ void initrace(void) { //addflag(lastrace->flags, F_STARTJOB, 20, J_WIZARD, NA, NULL); addflag(lastrace->flags, F_CANWILL, OT_A_SPRINT, 5, 5, NULL); - addrace(R_ORCWARRIOR, "orc wariror", 90, 'o', MT_FLESH); + addrace(R_ORCWARRIOR, "orc warrior", 90, 'o', MT_FLESH); lastrace->baseid = R_ORC; addflag(lastrace->flags, F_HOSTILE, B_TRUE, NA, NA, NULL); addflag(lastrace->flags, F_SIZE, SZ_HUMAN, NA, NA, NULL); @@ -4553,7 +4800,7 @@ void initrace(void) { addflag(lastrace->flags, F_ARMOURRATING, 10, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); - addflag(lastrace->flags, F_STARTIQ, IQ_DOPEY, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DOPEY, NA, NULL); addflag(lastrace->flags, F_HASATTACK, 1, 4, 0, "claws"); addflag(lastrace->flags, F_IFPCT, 70, NA, NA, NULL); addflag(lastrace->flags, F_STARTOB, 100, NA, NA, "battleaxe"); @@ -4582,7 +4829,7 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_HASATTACK, 1, 4, 0, "claws"); - addflag(lastrace->flags, F_STARTIQ, IQ_AVERAGE, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_AVERAGE, NA, NULL); addflag(lastrace->flags, F_STARTOBDT, 100, DT_SLASH, NA, NULL); addflag(lastrace->flags, F_STARTOBDT, 30, DT_BASH, NA, NULL); addflag(lastrace->flags, F_STARTOBCLASS, 30, OC_POTION, NA, NULL); @@ -4600,7 +4847,7 @@ void initrace(void) { addrace(R_POLTERGEIST, "poltergeist", 50, 'p', MT_FLESH); addflag(lastrace->flags, F_NOCORPSE, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_AVERAGE, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_AVERAGE, NA, NULL); addflag(lastrace->flags, F_HOSTILE, B_TRUE, NA, NA, NULL); addflag(lastrace->flags, F_RARITY, H_DUNGEON, 50, NA, NULL); addflag(lastrace->flags, F_SIZE, SZ_MEDIUM, NA, NA, NULL); @@ -4645,7 +4892,7 @@ void initrace(void) { addflag(lastrace->flags, F_EVASION, 0, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_SLOW, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); - addflag(lastrace->flags, F_STARTIQ, IQ_MINDLESS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_MINDLESS, NA, NULL); addflag(lastrace->flags, F_NOBODYPART, BP_WEAPON, NA, NA, NULL); addflag(lastrace->flags, F_NOBODYPART, BP_SECWEAPON, NA, NA, NULL); addflag(lastrace->flags, F_NOBODYPART, BP_RIGHTHAND, NA, NA, NULL); @@ -4663,7 +4910,7 @@ void initrace(void) { addrace(R_SPRITEFIRE, "fire sprite", 5, 'n', MT_FIRE); addflag(lastrace->flags, F_CORPSETYPE, NA, NA, NA, "small fire"); - addflag(lastrace->flags, F_STARTIQ, IQ_AVERAGE, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_AVERAGE, NA, NULL); addflag(lastrace->flags, F_HOSTILE, B_TRUE, NA, NA, NULL); addflag(lastrace->flags, F_RARITY, H_DUNGEON, 70, NA, NULL); addflag(lastrace->flags, F_SIZE, SZ_SMALL, NA, NA, NULL); @@ -4688,8 +4935,8 @@ void initrace(void) { addflag(lastrace->flags, F_EVASION, 10, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_FAST, NA, NA, ""); - addflag(lastrace->flags, F_STARTIQ, IQ_DIMWITTED, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_STRONG, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DIMWITTED, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_STRONG, NA, NULL); addflag(lastrace->flags, F_HASATTACK, 1, 6, 0, "claws"); addflag(lastrace->flags, F_REGENERATES, 2, NA, NA, NULL); addflag(lastrace->flags, F_SEEINDARK, 5, NA, NA, NULL); @@ -4702,8 +4949,8 @@ void initrace(void) { addflag(lastrace->flags, F_HITDICE, 1, 0, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_NORMAL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); - addflag(lastrace->flags, F_STARTIQ, IQ_DIMWITTED, NA, NA, NULL); - addflag(lastrace->flags, F_STARTSTR, ST_WEAK, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_DIMWITTED, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_WEAK, NA, NULL); addflag(lastrace->flags, F_HASATTACK, 1, 3, 0, "teeth"); // end monsters @@ -4713,7 +4960,7 @@ void initrace(void) { addflag(lastrace->flags, F_RARITY, H_DUNGEON, 100, NA, NULL); addflag(lastrace->flags, F_COLDBLOOD, B_TRUE, NA, NA, NULL); addflag(lastrace->flags, F_ANIMAL, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_ANIMAL, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_ANIMAL, NA, NULL); addflag(lastrace->flags, F_HITDICE, 1, 0, NA, NULL); addflag(lastrace->flags, F_SIZE, SZ_MINI, NA, NA, NULL); addflag(lastrace->flags, F_EVASION, 0, NA, NA, NULL); @@ -4729,7 +4976,7 @@ void initrace(void) { addrace(R_BAT, "bat", 1, 'B', MT_FLESH); addflag(lastrace->flags, F_RARITY, H_DUNGEON, 90, NA, ""); addflag(lastrace->flags, F_ANIMAL, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_ANIMAL, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_ANIMAL, NA, NULL); addflag(lastrace->flags, F_SIZE, SZ_SMALL, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_VERYFAST, NA, NA, ""); addflag(lastrace->flags, F_ACTIONSPEED, SP_FAST, NA, NA, ""); @@ -4747,7 +4994,8 @@ void initrace(void) { addflag(lastrace->flags, F_SEEINDARK, UNLIMITED, NA, NA, NULL); addrace(R_RAT, "giant rat", 0.2, 'r', MT_FLESH); addflag(lastrace->flags, F_ANIMAL, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_ANIMAL, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_STR, ST_VWEAK, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_ANIMAL, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_SIZE, SZ_MEDIUM, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_FAST, NA, NA, ""); @@ -4766,7 +5014,7 @@ void initrace(void) { addflag(lastrace->flags, F_SEEINDARK, 4, NA, NA, NULL); addrace(R_WOLF, "wolf", 10, 'd', MT_FLESH); addflag(lastrace->flags, F_ANIMAL, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_ANIMAL, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_ANIMAL, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_FAST, NA, NA, ""); addflag(lastrace->flags, F_SIZE, SZ_MEDIUM, NA, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_FAST, NA, NA, ""); @@ -4788,7 +5036,7 @@ void initrace(void) { // insects addrace(R_BUTTERFLY, "butterfly", 0.01, 'i', MT_FLESH); addflag(lastrace->flags, F_INSECT, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_ANIMAL, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_ANIMAL, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_VERYFAST, NA, NA, ""); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); addflag(lastrace->flags, F_SIZE, SZ_TINY, NA, NA, NULL); @@ -4805,7 +5053,7 @@ void initrace(void) { addflag(lastrace->flags, F_DTVULN, DT_POISONGAS, NA, NA, NULL); addrace(R_GIANTFLY, "giant fly", 1, 'i', MT_FLESH); addflag(lastrace->flags, F_INSECT, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_ANIMAL, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_ANIMAL, NA, NULL); addflag(lastrace->flags, F_NUMAPPEAR, 3, 3, NA, ""); addflag(lastrace->flags, F_MOVESPEED, SP_VERYFAST, NA, NA, ""); addflag(lastrace->flags, F_SIZE, SZ_SMALL, NA, NA, NULL); @@ -4825,7 +5073,7 @@ void initrace(void) { addflag(lastrace->flags, F_DTVULN, DT_POISONGAS, NA, NA, NULL); addrace(R_GIANTBLOWFLY, "giant blowfly", 2, 'i', MT_FLESH); addflag(lastrace->flags, F_INSECT, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_ANIMAL, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_ANIMAL, NA, NULL); addflag(lastrace->flags, F_CORPSETYPE, NA, NA, NA, "giant fly corpse"); addflag(lastrace->flags, F_NUMAPPEAR, 1, 2, NA, ""); addflag(lastrace->flags, F_MOVESPEED, SP_VERYFAST, NA, NA, ""); @@ -4848,7 +5096,7 @@ void initrace(void) { addrace(R_GLOWBUG, "glowbug", 1, 'i', MT_FLESH); addflag(lastrace->flags, F_INSECT, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_ANIMAL, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_ANIMAL, NA, NULL); addflag(lastrace->flags, F_MOVESPEED, SP_VERYFAST, NA, NA, ""); addflag(lastrace->flags, F_SIZE, SZ_SMALL, NA, NA, NULL); addflag(lastrace->flags, F_ACTIONSPEED, SP_NORMAL, NA, NA, ""); @@ -4869,7 +5117,7 @@ void initrace(void) { // undead addrace(R_ZOMBIE, "zombie", 50, 'Z', MT_FLESH); addflag(lastrace->flags, F_UNDEAD, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_MINDLESS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_MINDLESS, NA, NULL); addflag(lastrace->flags, F_NOCORPSE, B_TRUE, NA, NA, NULL); addflag(lastrace->flags, F_BLOODOB, NA, NA, NA, NULL); addflag(lastrace->flags, F_NUMAPPEAR, 2, 4, NA, NULL); @@ -4890,7 +5138,7 @@ void initrace(void) { addflag(lastrace->flags, F_DTVULN, DT_HOLY, NA, NA, NULL); addrace(R_SKELETON, "skeleton", 20, 'Z', MT_BONE); addflag(lastrace->flags, F_UNDEAD, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_MINDLESS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_MINDLESS, NA, NULL); addflag(lastrace->flags, F_CORPSETYPE, NA, NA, NA, "5-20 bones"); addflag(lastrace->flags, F_BLOODOB, NA, NA, NA, NULL); addflag(lastrace->flags, F_HOSTILE, B_TRUE, NA, NA, NULL); @@ -4905,13 +5153,14 @@ void initrace(void) { addflag(lastrace->flags, F_DTIMMUNE, DT_COLD, NA, NA, NULL); addflag(lastrace->flags, F_DTIMMUNE, DT_POISONGAS, NA, NA, NULL); addflag(lastrace->flags, F_DTIMMUNE, DT_DECAY, NA, NA, NULL); + addflag(lastrace->flags, F_DTRESIST, DT_SLASH, NA, NA, NULL); + addflag(lastrace->flags, F_DTVULN, DT_BASH, NA, NA, NULL); addflag(lastrace->flags, F_DTVULN, DT_HOLY, NA, NA, NULL); - addflag(lastrace->flags, F_DTVULN, DT_PROJECTILE, NA, NA, NULL); addrace(R_GHAST, "ghast", 50, 'Z', MT_FLESH); addflag(lastrace->flags, F_UNDEAD, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_SMART, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_SMART, NA, NULL); addflag(lastrace->flags, F_BLOODOB, NA, NA, NA, NULL); addflag(lastrace->flags, F_NOCORPSE, B_TRUE, NA, NA, NULL); addflag(lastrace->flags, F_HOSTILE, B_TRUE, NA, NA, NULL); @@ -4930,7 +5179,7 @@ void initrace(void) { addrace(R_GHOUL, "ghoul", 50, 'Z', MT_FLESH); addflag(lastrace->flags, F_UNDEAD, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_MINDLESS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_MINDLESS, NA, NULL); addflag(lastrace->flags, F_BLOODOB, NA, NA, NA, NULL); addflag(lastrace->flags, F_NOCORPSE, B_TRUE, NA, NA, NULL); addflag(lastrace->flags, F_HOSTILE, B_TRUE, NA, NA, NULL); @@ -4953,7 +5202,7 @@ void initrace(void) { addflag(lastrace->flags, F_MOVESPEED, SP_ULTRAFAST, NA, NA, ""); addflag(lastrace->flags, F_BLOODOB, NA, NA, NA, NULL); addflag(lastrace->flags, F_NOCORPSE, B_TRUE, NA, NA, NULL); - addflag(lastrace->flags, F_STARTIQ, IQ_MINDLESS, NA, NA, NULL); + addflag(lastrace->flags, F_STARTATT, A_IQ, IQ_MINDLESS, NA, NULL); addflag(lastrace->flags, F_SIZE, SZ_LARGE, NA, NA, NULL); addflag(lastrace->flags, F_FLYING, B_TRUE, NA, NA, ""); addflag(lastrace->flags, F_HITDICE, 1, 1, NA, ""); @@ -5011,6 +5260,7 @@ int isbleeding(lifeform_t *lf) { } int isblind(lifeform_t *lf) { + if (!lf) return B_FALSE; if (lfhasflag(lf, F_BLIND)) { return B_TRUE; } @@ -5554,9 +5804,16 @@ void modhunger(lifeform_t *lf, int amt) { f->val[0] += amt; } -// give initial equiment to a lifeform +float modifybystat(float num, lifeform_t *lf, enum ATTRIB att) { + int newnum; + newnum = num + ( num * (getstatmod(lf, att) / 100.0) ); + return newnum; +} + +// give initial equiment / skills to a lifeform void outfitlf(lifeform_t *lf) { givestartobs(lf, lf->flags); + givestartskills(lf, lf->flags); // weild/wear stuff autoweild(lf); @@ -5859,6 +6116,40 @@ int rolliq(enum IQBRACKET bracket) { return roll; } +int rollcon(enum CONBRACKET bracket) { + int roll = 0; + switch (bracket) { + case CN_FRAIL: + roll = rnd(1,2); + break; + case CN_SICKLY: + roll = rnd(3,4); + break; + case CN_UNHEALTHY: + roll = rnd(5,6); + break; + case CN_UNFIT: + roll = rnd(7,8); + break; + case CN_AVERAGE: + roll = rnd(9,11); + break; + case CN_HEALTHY: + roll = rnd(12,14); + break; + case CN_FIT: + roll = rnd(15,16); + break; + case CN_HARDY: + roll = rnd(17,18); + break; + default: + roll = rolldie(3,6); + break; + } + return roll; +} + int rolldex(enum DEXBRACKET bracket) { int roll = 0; switch (bracket) { @@ -5938,25 +6229,26 @@ int rollstr(enum STRBRACKET bracket) { int rollstat(lifeform_t *lf, enum ATTRIB attr) { flag_t *f; - enum FLAG attrflag; int bracket; - if (attr == A_STR) { - attrflag = F_STARTSTR; - bracket = ST_AVERAGE; - } else if (attr == A_DEX) { - attrflag = F_STARTDEX; - bracket = DX_AVERAGE; - } else if (attr == A_IQ) { - attrflag = F_STARTIQ; - bracket = IQ_AVERAGE; - } else { - return B_TRUE; - } - f = hasflag(lf->flags, attrflag); + f = hasflagval(lf->flags, F_STARTATT, attr, NA, NA, NULL); if (f) { - bracket = f->val[0]; + bracket = f->val[1]; + } else { + switch (attr) { + case A_STR: + bracket = ST_RANDOM; break; + case A_CON: + bracket = CN_RANDOM; break; + case A_DEX: + bracket = DX_RANDOM; break; + case A_IQ: + bracket = IQ_RANDOM; break; + default: + return B_TRUE; + } } + switch (attr) { case A_STR: lf->att[attr] = rollstr(bracket); @@ -5967,6 +6259,9 @@ int rollstat(lifeform_t *lf, enum ATTRIB attr) { case A_IQ: lf->att[attr] = rolliq(bracket); break; + case A_CON: + lf->att[attr] = rollcon(bracket); + break; default: return B_TRUE; } @@ -6154,6 +6449,12 @@ void setrace(lifeform_t *lf, enum RACE rid) { // inherit flags from race copyflags(lf->flags, lf->race->flags, FROMRACE); + // generate stats + for (i = 0; i < MAXATTS; i++) { + rollstat(lf, i); + lf->baseatt[i] = lf->att[i]; + } + // generate hp/maxhp from hit dice lf->maxhp = 0; for (i = 0; i < lf->level; i++) { @@ -6173,15 +6474,6 @@ void setrace(lifeform_t *lf, enum RACE rid) { lf->mp = lf->maxmp; } - // generate stats - rollstat(lf, A_STR); - rollstat(lf, A_DEX); - rollstat(lf, A_IQ); - - // base attrs - lf->baseatt[A_STR] = lf->att[A_STR]; - lf->baseatt[A_DEX] = lf->att[A_DEX]; - lf->baseatt[A_IQ] = lf->att[A_IQ]; lf->born = B_TRUE; @@ -6260,6 +6552,11 @@ void setlastdam(lifeform_t *lf, char *buf) { lf->lastdam = strdup(buf); } +void initskills(void) { + addskill(SK_LOCKPICKING, "Lockpicking", "Enhances your ability to pick locks."); + addskill(SK_RESEARCH, "Research", "Allows you a chance of recognising unknown objects."); +} + void interrupt(lifeform_t *lf) { stopresting(lf); stoprunning(lf); @@ -6299,29 +6596,48 @@ int shoot(lifeform_t *lf) { return B_FALSE; } -// positive mod makes it easier, negative makes it harder int skillcheck(lifeform_t *lf, enum CHECKTYPE ct, int diff, int mod) { + return real_skillcheck(lf, ct, diff, mod, NULL); +} + +// positive mod makes it easier, negative makes it harder +int real_skillcheck(lifeform_t *lf, enum CHECKTYPE ct, int diff, int mod, int *result) { int attrib; int levmod; int othermod = 0; int db = B_FALSE; int roll; + char mbuf[BUFLEN]; + + if (lfhasflag(lf, F_DEBUG)) { + db = B_TRUE; + } switch (ct) { case SC_STR: attrib = getattr(lf, A_STR); break; + case SC_CON: + attrib = getattr(lf, A_CON); + break; case SC_DEX: attrib = getattr(lf, A_DEX); break; + case SC_OPENLOCKS: + attrib = getattr(lf, A_DEX); + break; case SC_IQ: case SC_MORALE: attrib = getattr(lf, A_IQ); break; - case SC_DODGE: case SC_SLIP: attrib = getattr(lf, A_DEX); break; + case SC_DODGE: + // getevasion returns 0-100 (ie. pct chance) + // convert this to 0-20 + attrib = getevasion(lf) / 5; + break; } // other modifiers @@ -6334,20 +6650,65 @@ int skillcheck(lifeform_t *lf, enum CHECKTYPE ct, int diff, int mod) { } } + if (ct == SC_OPENLOCKS) { + enum SKILLLEVEL slev; + slev = getskill(lf, SK_LOCKPICKING); + if (slev == PR_INEPT) { + othermod -= 10; + } else { + othermod += (5 * slev); + } + } + levmod = (lf->level / 3); roll = rolldie(1, 20); - if (db) msg("skillcheck - need %d, got %d(rll)+%d(attr)+%d(lvm)+%d(othmod)+%d(mod)=%d.",diff, roll, attrib,levmod, othermod,mod); + if (db) { + sprintf(mbuf, "%s skillcheck - need %d, got %d(rll)+%d(attr)+%d(lvm)+%d(othmod)+%d(mod)=",lf->race->name, diff, roll, attrib,levmod, othermod,mod); + } roll += attrib; roll += mod; roll += levmod; roll += othermod; + if (db) { + msg("%s%d.",mbuf,roll); + } + + if (result) { + *result = roll; + } + if (roll >= diff) { return B_TRUE; } return B_FALSE; } +// returns TRUE if lf1 succeeded, FALSE if lf1 failed. +int skillcheckvs(lifeform_t *lf1, enum CHECKTYPE ct1, int mod1, lifeform_t *lf2, enum CHECKTYPE ct2, int mod2) { + int roll1,roll2; + int db = B_FALSE; + real_skillcheck(lf1, ct1, 0, mod1, &roll1); + real_skillcheck(lf2, ct2, 0, mod2, &roll2); + if (db) { + char lfname1[BUFLEN]; + char lfname2[BUFLEN]; + getlfname(lf1, lfname1); + getlfname(lf2, lfname2); + msg("%s:%d %s %s:%d, %s.", + lfname1,roll1, + (roll1 > roll2) ? ">" : "<=", + lfname2,roll2, + (roll1 > roll2) ? "pass" : "fail" + ); + } + + if (roll1 > roll2) { + return B_TRUE; + } + return B_FALSE; +} + int slipon(lifeform_t *lf, object_t *o) { char obname[BUFLEN]; char lfname[BUFLEN]; diff --git a/lf.h b/lf.h index a17a49b..b945478 100644 --- a/lf.h +++ b/lf.h @@ -4,6 +4,7 @@ lifeform_t *addlf(cell_t *cell, enum RACE rid, int level); lifeform_t *real_addlf(cell_t *cell, enum RACE rid, int level, int controller); job_t *addjob(enum JOB id, char *name); race_t *addrace(enum RACE id, char *name, float weight, char glyph, enum MATERIAL mat); +skill_t *addskill(enum SKILL id, char *name, char *desc); void adjustdamlf(lifeform_t *lf, int *amt, enum DAMTYPE damtype); void autotarget(lifeform_t *lf); void autoweild(lifeform_t *lf); @@ -33,6 +34,7 @@ job_t *findjobbyname(char *name); lifeform_t *findlf(map_t *m, int lfid); race_t *findrace(enum RACE id); race_t *findracebyname(char *name); +skill_t *findskill(enum SKILL id); int flee(lifeform_t *lf); int freezelf(lifeform_t *freezee, lifeform_t *freezer, int howlong); void gainhp(lifeform_t *lf, int amt); @@ -77,6 +79,7 @@ int getmovespeed(lifeform_t *lf); char *getmoveverb(lifeform_t *lf); char *getmoveverbother(lifeform_t *lf); char *getlfname(lifeform_t *lf, char *buf); +char *real_getlfname(lifeform_t *lf, char *buf, int usevis); char *getlfnamea(lifeform_t *lf, char *buf); enum LFSIZE getlfsize(lifeform_t *lf); float getlfweight(lifeform_t *lf, int withobs); @@ -87,17 +90,24 @@ object_t *getrandomarmour(lifeform_t *lf); //int getrandommonlevel(int depth); race_t *getrandomrace(map_t *map); race_t *getreallyrandomrace(void); +enum SKILLLEVEL getskill(lifeform_t *lf, enum SKILL id); char *getspeedname(int speed, char *buf); float getstatmod(lifeform_t *lf, enum ATTRIB att); +enum CONBRACKET getconname(int str, char *buf); enum STRBRACKET getstrname(int str, char *buf); enum DEXBRACKET getdexname(int dex, char *buf); enum IQBRACKET getiqname(int iq, char *buf); +char *getskilldesc(enum SKILL id ); +char *getskillname(enum SKILL id ); +char *getskilllevelname(enum SKILLLEVEL sl); int getthrowspeed(int str); object_t *getweapon(lifeform_t *lf); long getxpforlev(int level); void givejob(lifeform_t *lf, enum JOB jobid); void giveobflags(lifeform_t *lf, object_t *o, enum FLAG whattype); +int giveskill(lifeform_t *lf, enum SKILL id); void givestartobs(lifeform_t *lf, flagpile_t *fp); +void givestartskills(lifeform_t *lf, flagpile_t *fp); map_t *gotolev(lifeform_t *lf, int depth, object_t *fromstairs); job_t *hasjob(lifeform_t *lf, enum JOB job); flag_t *lfhasflag(lifeform_t *lf, enum FLAG fid); @@ -111,6 +121,7 @@ int haslos(lifeform_t *viewer, cell_t *dest); int hasmr(lifeform_t *lf); void initjobs(void); void initrace(void); +void initskills(void); void interrupt(lifeform_t *lf); int isairborne(lifeform_t *lf); int isbleeding(lifeform_t *lf); @@ -141,6 +152,7 @@ lifeform_t *makezombie(object_t *o); void mayusespellschool(flagpile_t *fp, enum SPELLSCHOOL ss, enum FLAG how); int modattr(lifeform_t *lf, enum ATTRIB attr, int amt); void modhunger(lifeform_t *lf, int amt); +float modifybystat(float num, lifeform_t *lf, enum ATTRIB att); void outfitlf(lifeform_t *lf); int pickup(lifeform_t *lf, object_t *what, int howmany, int fromground); void precalclos(lifeform_t *lf); @@ -148,6 +160,7 @@ int push(lifeform_t *lf, object_t *o, int dir); void relinklf(lifeform_t *src, map_t *dst); int rest(lifeform_t *lf, int onpurpose); void startresting(lifeform_t *lf); +int rollcon(enum CONBRACKET bracket); int rolldex(enum DEXBRACKET bracket); int rolliq(enum IQBRACKET bracket); int rollstr(enum STRBRACKET bracket); @@ -160,6 +173,8 @@ void setrace(lifeform_t *lf, enum RACE rid); void setlastdam(lifeform_t *lf, char *buf); int shoot(lifeform_t *lf); int skillcheck(lifeform_t *lf, enum CHECKTYPE ct, int diff, int mod); +int real_skillcheck(lifeform_t *lf, enum CHECKTYPE ct, int diff, int mod, int *result); +int skillcheckvs(lifeform_t *lf1, enum CHECKTYPE ct1, int mod1, lifeform_t *lf2, enum CHECKTYPE ct2, int mod2); int slipon(lifeform_t *lf, object_t *o); void sortlf(map_t *map, lifeform_t *lf); int stone(lifeform_t *lf); diff --git a/log.txt b/log.txt index 3ce105c..ccf41cb 100644 --- a/log.txt +++ b/log.txt @@ -2,6 +2,10 @@ ====== NEW LOGFILE ==== +DB: checking for 'flaming ' in 'wooden door' +DB: checking for 'headless ' in 'wooden door' +DB: checking for 'masterwork ' in 'wooden door' +DB: checking for 'shoddy ' in 'wooden door' DB: called addobject() for wooden door, canstack = -1 DB: Looking for object name 'wooden door' checkobnames(): got exact match: 'wooden door' @@ -10,6 +14,10 @@ xxx DB: setting canstack = false, objecttype 'wooden door' not stackable DB: 'wooden door' -> adding 1 x wooden door DB: Creating new object (wooden door). +DB: checking for 'flaming ' in 'wooden door' +DB: checking for 'headless ' in 'wooden door' +DB: checking for 'masterwork ' in 'wooden door' +DB: checking for 'shoddy ' in 'wooden door' DB: called addobject() for wooden door, canstack = -1 DB: Looking for object name 'wooden door' checkobnames(): got exact match: 'wooden door' @@ -18,6 +26,10 @@ xxx DB: setting canstack = false, objecttype 'wooden door' not stackable DB: 'wooden door' -> adding 1 x wooden door DB: Creating new object (wooden door). +DB: checking for 'flaming ' in 'wooden door' +DB: checking for 'headless ' in 'wooden door' +DB: checking for 'masterwork ' in 'wooden door' +DB: checking for 'shoddy ' in 'wooden door' DB: called addobject() for wooden door, canstack = -1 DB: Looking for object name 'wooden door' checkobnames(): got exact match: 'wooden door' @@ -26,6 +38,10 @@ xxx DB: setting canstack = false, objecttype 'wooden door' not stackable DB: 'wooden door' -> adding 1 x wooden door DB: Creating new object (wooden door). +DB: checking for 'flaming ' in 'wooden door' +DB: checking for 'headless ' in 'wooden door' +DB: checking for 'masterwork ' in 'wooden door' +DB: checking for 'shoddy ' in 'wooden door' DB: called addobject() for wooden door, canstack = -1 DB: Looking for object name 'wooden door' checkobnames(): got exact match: 'wooden door' @@ -34,6 +50,10 @@ xxx DB: setting canstack = false, objecttype 'wooden door' not stackable DB: 'wooden door' -> adding 1 x wooden door DB: Creating new object (wooden door). +DB: checking for 'flaming ' in 'wooden door' +DB: checking for 'headless ' in 'wooden door' +DB: checking for 'masterwork ' in 'wooden door' +DB: checking for 'shoddy ' in 'wooden door' DB: called addobject() for wooden door, canstack = -1 DB: Looking for object name 'wooden door' checkobnames(): got exact match: 'wooden door' @@ -42,6 +62,10 @@ xxx DB: setting canstack = false, objecttype 'wooden door' not stackable DB: 'wooden door' -> adding 1 x wooden door DB: Creating new object (wooden door). +DB: checking for 'flaming ' in 'wooden door' +DB: checking for 'headless ' in 'wooden door' +DB: checking for 'masterwork ' in 'wooden door' +DB: checking for 'shoddy ' in 'wooden door' DB: called addobject() for wooden door, canstack = -1 DB: Looking for object name 'wooden door' checkobnames(): got exact match: 'wooden door' @@ -50,6 +74,10 @@ xxx DB: setting canstack = false, objecttype 'wooden door' not stackable DB: 'wooden door' -> adding 1 x wooden door DB: Creating new object (wooden door). +DB: checking for 'flaming ' in 'wooden door' +DB: checking for 'headless ' in 'wooden door' +DB: checking for 'masterwork ' in 'wooden door' +DB: checking for 'shoddy ' in 'wooden door' DB: called addobject() for wooden door, canstack = -1 DB: Looking for object name 'wooden door' checkobnames(): got exact match: 'wooden door' @@ -58,6 +86,10 @@ xxx DB: setting canstack = false, objecttype 'wooden door' not stackable DB: 'wooden door' -> adding 1 x wooden door DB: Creating new object (wooden door). +DB: checking for 'flaming ' in 'wooden door' +DB: checking for 'headless ' in 'wooden door' +DB: checking for 'masterwork ' in 'wooden door' +DB: checking for 'shoddy ' in 'wooden door' DB: called addobject() for wooden door, canstack = -1 DB: Looking for object name 'wooden door' checkobnames(): got exact match: 'wooden door' @@ -66,6 +98,10 @@ xxx DB: setting canstack = false, objecttype 'wooden door' not stackable DB: 'wooden door' -> adding 1 x wooden door DB: Creating new object (wooden door). +DB: checking for 'flaming ' in 'staircase going up' +DB: checking for 'headless ' in 'staircase going up' +DB: checking for 'masterwork ' in 'staircase going up' +DB: checking for 'shoddy ' in 'staircase going up' DB: called addobject() for staircase going up, canstack = -1 DB: Looking for object name 'staircase going up' checkobnames(): got exact match: 'staircase going up' @@ -73,6 +109,10 @@ DB: FOUND: ot->name = 'staircase going up' DB: setting canstack = false, objecttype 'staircase going up' not stackable DB: 'staircase going up' -> adding 1 x staircase going up DB: Creating new object (staircase going up). +DB: checking for 'flaming ' in 'staircase going down' +DB: checking for 'headless ' in 'staircase going down' +DB: checking for 'masterwork ' in 'staircase going down' +DB: checking for 'shoddy ' in 'staircase going down' DB: called addobject() for staircase going down, canstack = -1 DB: Looking for object name 'staircase going down' checkobnames(): got exact match: 'staircase going down' @@ -80,85 +120,19 @@ DB: FOUND: ot->name = 'staircase going down' DB: setting canstack = false, objecttype 'staircase going down' not stackable DB: 'staircase going down' -> adding 1 x staircase going down DB: Creating new object (staircase going down). -DB: called addobject() for 1 blessed +0 shield, canstack = -1 -DB: ob is blessed (blessed +0 shield) -DB: Looking for object name 'blessed +0 shield' -checkobnames(): got exact match: 'shield' -DB: FOUND: ot->name = 'shield' -DB: setting canstack = false, objecttype 'shield' not stackable -DB: '1 blessed +0 shield' -> adding 1 x shield -DB: Creating new object (shield). -DB: called addobject() for 1 +0 pair of overalls, canstack = -1 -DB: Looking for object name 'pair of overalls' -checkobnames(): got exact match: 'pair of overalls' -DB: FOUND: ot->name = 'pair of overalls' -DB: setting canstack = false, objecttype 'pair of overalls' not stackable -DB: '1 +0 pair of overalls' -> adding 1 x pair of overalls -DB: Creating new object (pair of overalls). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for buckler, canstack = -1 -DB: Looking for object name 'buckler' -checkobnames(): got exact match: 'buckler' -DB: FOUND: ot->name = 'buckler' -DB: setting canstack = false, objecttype 'buckler' not stackable -DB: 'buckler' -> adding 1 x buckler -DB: Creating new object (buckler). -DB: called addobject() for 1 +0 pair of sandals, canstack = -1 -DB: Looking for object name 'pair of sandals' -checkobnames(): got exact match: 'pair of sandals' -DB: FOUND: ot->name = 'pair of sandals' -DB: setting canstack = false, objecttype 'pair of sandals' not stackable -DB: '1 +0 pair of sandals' -> adding 1 x pair of sandals -DB: Creating new object (pair of sandals). -DB: called addobject() for 1 +0 gas mask, canstack = -1 -DB: Looking for object name 'gas mask' -checkobnames(): got exact match: 'gas mask' -DB: FOUND: ot->name = 'gas mask' -DB: setting canstack = false, objecttype 'gas mask' not stackable -DB: '1 +0 gas mask' -> adding 1 x gas mask -DB: Creating new object (gas mask). -DB: called addobject() for 1 potion of minor healing, canstack = -1 -DB: Looking for object name 'potion of minor healing' -checkobnames(): got exact match: 'potion of minor healing' -DB: FOUND: ot->name = 'potion of minor healing' -DB: '1 potion of minor healing' -> adding 1 x potion of minor healing -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (potion of minor healing). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for club, canstack = -1 -DB: Looking for object name 'club' -checkobnames(): got exact match: 'club' -DB: FOUND: ot->name = 'club' -DB: setting canstack = false, objecttype 'club' not stackable -DB: 'club' -> adding 1 x club -DB: Creating new object (club). -DB: called addobject() for buckler, canstack = -1 -DB: Looking for object name 'buckler' -checkobnames(): got exact match: 'buckler' -DB: FOUND: ot->name = 'buckler' -DB: setting canstack = false, objecttype 'buckler' not stackable -DB: 'buckler' -> adding 1 x buckler -DB: Creating new object (buckler). -DB: called addobject() for fists, canstack = -1 -DB: Looking for object name 'fists' -checkobnames(): got exact match: 'fists' -DB: FOUND: ot->name = 'fists' -DB: setting canstack = false, objecttype 'fists' not stackable -DB: 'fists' -> adding 1 x fists -DB: Creating new object (fists). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' DB: called addobject() for teeth, canstack = -1 DB: Looking for object name 'teeth' checkobnames(): got exact match: 'teeth' @@ -166,166 +140,253 @@ DB: FOUND: ot->name = 'teeth' DB: setting canstack = false, objecttype 'teeth' not stackable DB: 'teeth' -> adding 1 x teeth DB: Creating new object (teeth). -DB: called addobject() for fists, canstack = -1 -DB: Looking for object name 'fists' -checkobnames(): got exact match: 'fists' -DB: FOUND: ot->name = 'fists' -DB: setting canstack = false, objecttype 'fists' not stackable -DB: 'fists' -> adding 1 x fists -DB: Creating new object (fists). -DB: called addobject() for club, canstack = -1 -DB: Looking for object name 'club' -checkobnames(): got exact match: 'club' -DB: FOUND: ot->name = 'club' -DB: setting canstack = false, objecttype 'club' not stackable -DB: 'club' -> adding 1 x club -DB: Creating new object (club). -DB: called addobject() for 1 +0 knife, canstack = -1 -DB: Looking for object name 'knife' -checkobnames(): got exact match: 'knife' -DB: FOUND: ot->name = 'knife' -DB: setting canstack = false, objecttype 'knife' not stackable -DB: '1 +0 knife' -> adding 1 x knife -DB: Creating new object (knife). -DB: called addobject() for 1 potion of haste, canstack = -1 -DB: Looking for object name 'potion of haste' -checkobnames(): got exact match: 'potion of haste' -DB: FOUND: ot->name = 'potion of haste' -DB: '1 potion of haste' -> adding 1 x potion of haste +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in '1 spellbook of turn undead' +DB: checking for 'headless ' in '1 spellbook of turn undead' +DB: checking for 'masterwork ' in '1 spellbook of turn undead' +DB: checking for 'shoddy ' in '1 spellbook of turn undead' +DB: called addobject() for 1 spellbook of turn undead, canstack = -1 +DB: Looking for object name 'spellbook of turn undead' +checkobnames(): got exact match: 'spellbook of turn undead' +DB: FOUND: ot->name = 'spellbook of turn undead' +DB: setting canstack = false, objecttype 'spellbook of turn undead' not stackable +DB: '1 spellbook of turn undead' -> adding 1 x spellbook of turn undead +DB: Creating new object (spellbook of turn undead). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in '1 scroll of freezing touch' +DB: checking for 'headless ' in '1 scroll of freezing touch' +DB: checking for 'masterwork ' in '1 scroll of freezing touch' +DB: checking for 'shoddy ' in '1 scroll of freezing touch' +DB: called addobject() for 1 scroll of freezing touch, canstack = -1 +DB: Looking for object name 'scroll of freezing touch' +checkobnames(): got exact match: 'scroll of freezing touch' +DB: FOUND: ot->name = 'scroll of freezing touch' +DB: '1 scroll of freezing touch' -> adding 1 x scroll of freezing touch DB: Looking for stacks... DB: No stacks found. -DB: Creating new object (potion of haste). -DB: called addobject() for leather armour, canstack = -1 -DB: Looking for object name 'leather armour' -checkobnames(): got exact match: 'leather armour' -DB: FOUND: ot->name = 'leather armour' -DB: setting canstack = false, objecttype 'leather armour' not stackable -DB: 'leather armour' -> adding 1 x leather armour -DB: Creating new object (leather armour). -DB: called addobject() for bone helmet, canstack = -1 -DB: Looking for object name 'bone helmet' -checkobnames(): got exact match: 'bone helmet' -DB: FOUND: ot->name = 'bone helmet' -DB: setting canstack = false, objecttype 'bone helmet' not stackable -DB: 'bone helmet' -> adding 1 x bone helmet -DB: Creating new object (bone helmet). -DB: called addobject() for 1 potion of healing, canstack = -1 -DB: Looking for object name 'potion of healing' -checkobnames(): got exact match: 'potion of healing' -DB: FOUND: ot->name = 'potion of healing' -DB: '1 potion of healing' -> adding 1 x potion of healing +DB: Creating new object (scroll of freezing touch). +DB: checking for 'flaming ' in '1 +0 shoddy pair of overalls' +DB: checking for 'headless ' in '1 +0 shoddy pair of overalls' +DB: checking for 'masterwork ' in '1 +0 shoddy pair of overalls' +DB: checking for 'shoddy ' in '1 +0 shoddy pair of overalls' +DB: found obmod prefix 'shoddy ' +DB: called addobject() for 1 +0 pair of overalls, canstack = -1 +DB: Looking for object name 'pair of overalls' +checkobnames(): got exact match: 'pair of overalls' +DB: FOUND: ot->name = 'pair of overalls' +DB: setting canstack = false, objecttype 'pair of overalls' not stackable +DB: '1 +0 shoddy pair of overalls' -> adding 1 x pair of overalls +DB: Creating new object (pair of overalls). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in '1 blessed javelin' +DB: checking for 'headless ' in '1 blessed javelin' +DB: checking for 'masterwork ' in '1 blessed javelin' +DB: checking for 'shoddy ' in '1 blessed javelin' +DB: called addobject() for 1 blessed javelin, canstack = -1 +DB: ob is blessed (blessed javelin) +DB: Looking for object name 'blessed javelin' +checkobnames(): got exact match: 'javelin' +DB: FOUND: ot->name = 'javelin' +DB: '1 blessed javelin' -> adding 1 x javelin DB: Looking for stacks... DB: No stacks found. -DB: Creating new object (potion of healing). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for 1 potion of restoration, canstack = -1 -DB: Looking for object name 'potion of restoration' -checkobnames(): got exact match: 'potion of restoration' -DB: FOUND: ot->name = 'potion of restoration' -DB: '1 potion of restoration' -> adding 1 x potion of restoration -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (potion of restoration). -DB: called addobject() for 1-5 darts, canstack = -1 -DB: Looking for object name 'darts' -checkobnames(): got match after stripping 's': 'dart' -> 'darts' -DB: FOUND: ot->name = 'dart' -DB: '1-5 darts' -> adding 2 x dart -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (dart). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for 1 +0 dagger, canstack = -1 -DB: Looking for object name 'dagger' -checkobnames(): got exact match: 'dagger' -DB: FOUND: ot->name = 'dagger' -DB: setting canstack = false, objecttype 'dagger' not stackable -DB: '1 +0 dagger' -> adding 1 x dagger -DB: Creating new object (dagger). -DB: called addobject() for 1-5 darts, canstack = -1 -DB: Looking for object name 'darts' -checkobnames(): got match after stripping 's': 'dart' -> 'darts' -DB: FOUND: ot->name = 'dart' -DB: '1-5 darts' -> adding 5 x dart -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (dart). -DB: called addobject() for buckler, canstack = -1 -DB: Looking for object name 'buckler' -checkobnames(): got exact match: 'buckler' -DB: FOUND: ot->name = 'buckler' -DB: setting canstack = false, objecttype 'buckler' not stackable -DB: 'buckler' -> adding 1 x buckler -DB: Creating new object (buckler). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for 1-5 darts, canstack = -1 -DB: Looking for object name 'darts' -checkobnames(): got match after stripping 's': 'dart' -> 'darts' -DB: FOUND: ot->name = 'dart' -DB: '1-5 darts' -> adding 2 x dart -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (dart). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for 1 wand of opening, canstack = -1 -DB: Looking for object name 'wand of opening' -checkobnames(): got exact match: 'wand of opening' -DB: FOUND: ot->name = 'wand of opening' -DB: setting canstack = false, objecttype 'wand of opening' not stackable -DB: '1 wand of opening' -> adding 1 x wand of opening -DB: Creating new object (wand of opening). -DB: called addobject() for 1 +0 scythe, canstack = -1 -DB: Looking for object name 'scythe' -checkobnames(): got exact match: 'scythe' -DB: FOUND: ot->name = 'scythe' -DB: setting canstack = false, objecttype 'scythe' not stackable -DB: '1 +0 scythe' -> adding 1 x scythe -DB: Creating new object (scythe). -DB: called addobject() for leather boots, canstack = -1 -DB: Looking for object name 'leather boots' -DB: FOUND: ot->name = 'pair of leather boots' -DB: setting canstack = false, objecttype 'pair of leather boots' not stackable -DB: 'leather boots' -> adding 1 x pair of leather boots -DB: Creating new object (pair of leather boots). -DB: called addobject() for football helmet, canstack = -1 -DB: Looking for object name 'football helmet' -checkobnames(): got exact match: 'football helmet' -DB: FOUND: ot->name = 'football helmet' -DB: setting canstack = false, objecttype 'football helmet' not stackable -DB: 'football helmet' -> adding 1 x football helmet -DB: Creating new object (football helmet). -DB: called addobject() for 1-25 gold coins, canstack = -1 -DB: Looking for object name 'gold coins' -checkobnames(): got match after stripping 's': 'gold coin' -> 'gold coins' -DB: FOUND: ot->name = 'gold coin' -DB: '1-25 gold coins' -> adding 21 x gold coin -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (gold coin). +DB: Creating new object (javelin). +DB: checking for 'flaming ' in '1 +0 trident' +DB: checking for 'headless ' in '1 +0 trident' +DB: checking for 'masterwork ' in '1 +0 trident' +DB: checking for 'shoddy ' in '1 +0 trident' +DB: called addobject() for 1 +0 trident, canstack = -1 +DB: Looking for object name 'trident' +checkobnames(): got exact match: 'trident' +DB: FOUND: ot->name = 'trident' +DB: setting canstack = false, objecttype 'trident' not stackable +DB: '1 +0 trident' -> adding 1 x trident +DB: Creating new object (trident). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in '1 blessed potion of haste' +DB: checking for 'headless ' in '1 blessed potion of haste' +DB: checking for 'masterwork ' in '1 blessed potion of haste' +DB: checking for 'shoddy ' in '1 blessed potion of haste' DB: called addobject() for 1 blessed potion of haste, canstack = -1 DB: ob is blessed (blessed potion of haste) DB: Looking for object name 'blessed potion of haste' @@ -335,179 +396,10 @@ DB: '1 blessed potion of haste' -> adding 1 x potion of haste DB: Looking for stacks... DB: No stacks found. DB: Creating new object (potion of haste). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for 1 bone, canstack = -1 -DB: Looking for object name 'bone' -checkobnames(): got exact match: 'bone' -DB: FOUND: ot->name = 'bone' -DB: '1 bone' -> adding 1 x bone -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (bone). -DB: called addobject() for 1 potion of oil, canstack = -1 -DB: Looking for object name 'potion of oil' -checkobnames(): got exact match: 'potion of oil' -DB: FOUND: ot->name = 'potion of oil' -DB: '1 potion of oil' -> adding 1 x potion of oil -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (potion of oil). -DB: called addobject() for 1 blessed +0 club, canstack = -1 -DB: ob is blessed (blessed +0 club) -DB: Looking for object name 'blessed +0 club' -checkobnames(): got exact match: 'club' -DB: FOUND: ot->name = 'club' -DB: setting canstack = false, objecttype 'club' not stackable -DB: '1 blessed +0 club' -> adding 1 x club -DB: Creating new object (club). -DB: called addobject() for 1 +0 gas mask, canstack = -1 -DB: Looking for object name 'gas mask' -checkobnames(): got exact match: 'gas mask' -DB: FOUND: ot->name = 'gas mask' -DB: setting canstack = false, objecttype 'gas mask' not stackable -DB: '1 +0 gas mask' -> adding 1 x gas mask -DB: Creating new object (gas mask). -DB: called addobject() for 1 potion of magic, canstack = -1 -DB: Looking for object name 'potion of magic' -checkobnames(): got exact match: 'potion of magic' -DB: FOUND: ot->name = 'potion of magic' -DB: '1 potion of magic' -> adding 1 x potion of magic -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (potion of magic). -DB: called addobject() for club, canstack = -1 -DB: Looking for object name 'club' -checkobnames(): got exact match: 'club' -DB: FOUND: ot->name = 'club' -DB: setting canstack = false, objecttype 'club' not stackable -DB: 'club' -> adding 1 x club -DB: Creating new object (club). -DB: called addobject() for tail, canstack = -1 -DB: Looking for object name 'tail' -checkobnames(): got exact match: 'tail' -DB: FOUND: ot->name = 'tail' -DB: setting canstack = false, objecttype 'tail' not stackable -DB: 'tail' -> adding 1 x tail -DB: Creating new object (tail). -DB: called addobject() for 87 gold coins, canstack = -1 -DB: Looking for object name 'gold coins' -checkobnames(): got match after stripping 's': 'gold coin' -> 'gold coins' -DB: FOUND: ot->name = 'gold coin' -DB: '87 gold coins' -> adding 87 x gold coin -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (gold coin). -DB: called addobject() for 1 blessed scroll of flame burst, canstack = -1 -DB: ob is blessed (blessed scroll of flame burst) -DB: Looking for object name 'blessed scroll of flame burst' -checkobnames(): got exact match: 'scroll of flame burst' -DB: FOUND: ot->name = 'scroll of flame burst' -DB: '1 blessed scroll of flame burst' -> adding 1 x scroll of flame burst -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (scroll of flame burst). -DB: called addobject() for 1 blessed +0 heavy flail, canstack = -1 -DB: ob is blessed (blessed +0 heavy flail) -DB: Looking for object name 'blessed +0 heavy flail' -checkobnames(): got exact match: 'heavy flail' -DB: FOUND: ot->name = 'heavy flail' -DB: setting canstack = false, objecttype 'heavy flail' not stackable -DB: '1 blessed +0 heavy flail' -> adding 1 x heavy flail -DB: Creating new object (heavy flail). -DB: called addobject() for teeth, canstack = -1 -DB: Looking for object name 'teeth' -checkobnames(): got exact match: 'teeth' -DB: FOUND: ot->name = 'teeth' -DB: setting canstack = false, objecttype 'teeth' not stackable -DB: 'teeth' -> adding 1 x teeth -DB: Creating new object (teeth). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for 1 +0 steak knife, canstack = -1 -DB: Looking for object name 'steak knife' -checkobnames(): got exact match: 'steak knife' -DB: FOUND: ot->name = 'steak knife' -DB: setting canstack = false, objecttype 'steak knife' not stackable -DB: '1 +0 steak knife' -> adding 1 x steak knife -DB: Creating new object (steak knife). -DB: called addobject() for 1 potion of restoration, canstack = -1 -DB: Looking for object name 'potion of restoration' -checkobnames(): got exact match: 'potion of restoration' -DB: FOUND: ot->name = 'potion of restoration' -DB: '1 potion of restoration' -> adding 1 x potion of restoration -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (potion of restoration). -DB: called addobject() for flak jacket, canstack = -1 -DB: Looking for object name 'flak jacket' -checkobnames(): got exact match: 'flak jacket' -DB: FOUND: ot->name = 'flak jacket' -DB: setting canstack = false, objecttype 'flak jacket' not stackable -DB: 'flak jacket' -> adding 1 x flak jacket -DB: Creating new object (flak jacket). -DB: called addobject() for 1 lockpick, canstack = -1 -DB: Looking for object name 'lockpick' -checkobnames(): got exact match: 'lockpick' -DB: FOUND: ot->name = 'lockpick' -DB: '1 lockpick' -> adding 1 x lockpick -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (lockpick). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for 1 potion of water, canstack = -1 -DB: Looking for object name 'potion of water' -checkobnames(): got exact match: 'potion of water' -DB: FOUND: ot->name = 'potion of water' -DB: '1 potion of water' -> adding 1 x potion of water -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (potion of water). -DB: called addobject() for leather armour, canstack = -1 -DB: Looking for object name 'leather armour' -checkobnames(): got exact match: 'leather armour' -DB: FOUND: ot->name = 'leather armour' -DB: setting canstack = false, objecttype 'leather armour' not stackable -DB: 'leather armour' -> adding 1 x leather armour -DB: Creating new object (leather armour). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for 1-3 javelins, canstack = -1 -DB: Looking for object name 'javelins' -checkobnames(): got match after stripping 's': 'javelin' -> 'javelins' -DB: FOUND: ot->name = 'javelin' -DB: '1-3 javelins' -> adding 3 x javelin -DB: Looking for stacks... -DB: No stacks found. -DB: Creating new object (javelin). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). +DB: checking for 'flaming ' in '1 small puddle of water' +DB: checking for 'headless ' in '1 small puddle of water' +DB: checking for 'masterwork ' in '1 small puddle of water' +DB: checking for 'shoddy ' in '1 small puddle of water' DB: called addobject() for 1 small puddle of water, canstack = -1 DB: Looking for object name 'small puddle of water' checkobnames(): got exact match: 'small puddle of water' @@ -516,20 +408,139 @@ DB: '1 small puddle of water' -> adding 1 x small puddle of water DB: Looking for stacks... DB: No stacks found. DB: Creating new object (small puddle of water). -DB: called addobject() for club, canstack = -1 -DB: Looking for object name 'club' -checkobnames(): got exact match: 'club' -DB: FOUND: ot->name = 'club' -DB: setting canstack = false, objecttype 'club' not stackable -DB: 'club' -> adding 1 x club -DB: Creating new object (club). -DB: called addobject() for tail, canstack = -1 -DB: Looking for object name 'tail' -checkobnames(): got exact match: 'tail' -DB: FOUND: ot->name = 'tail' -DB: setting canstack = false, objecttype 'tail' not stackable -DB: 'tail' -> adding 1 x tail -DB: Creating new object (tail). +DB: checking for 'flaming ' in '1 bone' +DB: checking for 'headless ' in '1 bone' +DB: checking for 'masterwork ' in '1 bone' +DB: checking for 'shoddy ' in '1 bone' +DB: called addobject() for 1 bone, canstack = -1 +DB: Looking for object name 'bone' +checkobnames(): got exact match: 'bone' +DB: FOUND: ot->name = 'bone' +DB: '1 bone' -> adding 1 x bone +DB: Looking for stacks... +DB: No stacks found. +DB: Creating new object (bone). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in '1 +0 masterwork bow' +DB: checking for 'headless ' in '1 +0 masterwork bow' +DB: checking for 'masterwork ' in '1 +0 masterwork bow' +DB: found obmod prefix 'masterwork ' +DB: checking for 'shoddy ' in '1 +0 bow' +DB: called addobject() for 1 +0 bow, canstack = -1 +DB: Looking for object name 'bow' +checkobnames(): got exact match: 'bow' +DB: FOUND: ot->name = 'bow' +DB: setting canstack = false, objecttype 'bow' not stackable +DB: '1 +0 masterwork bow' -> adding 1 x bow +DB: Creating new object (bow). +DB: checking for 'flaming ' in '1 empty flask' +DB: checking for 'headless ' in '1 empty flask' +DB: checking for 'masterwork ' in '1 empty flask' +DB: checking for 'shoddy ' in '1 empty flask' +DB: called addobject() for 1 empty flask, canstack = -1 +DB: Looking for object name 'empty flask' +checkobnames(): got exact match: 'empty flask' +DB: FOUND: ot->name = 'empty flask' +DB: '1 empty flask' -> adding 1 x empty flask +DB: Looking for stacks... +DB: No stacks found. +DB: Creating new object (empty flask). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in '1 scroll of mind scan' +DB: checking for 'headless ' in '1 scroll of mind scan' +DB: checking for 'masterwork ' in '1 scroll of mind scan' +DB: checking for 'shoddy ' in '1 scroll of mind scan' +DB: called addobject() for 1 scroll of mind scan, canstack = -1 +DB: Looking for object name 'scroll of mind scan' +checkobnames(): got exact match: 'scroll of mind scan' +DB: FOUND: ot->name = 'scroll of mind scan' +DB: '1 scroll of mind scan' -> adding 1 x scroll of mind scan +DB: Looking for stacks... +DB: No stacks found. +DB: Creating new object (scroll of mind scan). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in '1 +0 shoddy pair of leather boots' +DB: checking for 'headless ' in '1 +0 shoddy pair of leather boots' +DB: checking for 'masterwork ' in '1 +0 shoddy pair of leather boots' +DB: checking for 'shoddy ' in '1 +0 shoddy pair of leather boots' +DB: found obmod prefix 'shoddy ' +DB: called addobject() for 1 +0 pair of leather boots, canstack = -1 +DB: Looking for object name 'pair of leather boots' +checkobnames(): got exact match: 'pair of leather boots' +DB: FOUND: ot->name = 'pair of leather boots' +DB: setting canstack = false, objecttype 'pair of leather boots' not stackable +DB: '1 +0 shoddy pair of leather boots' -> adding 1 x pair of leather boots +DB: Creating new object (pair of leather boots). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' DB: called addobject() for teeth, canstack = -1 DB: Looking for object name 'teeth' checkobnames(): got exact match: 'teeth' @@ -537,80 +548,183 @@ DB: FOUND: ot->name = 'teeth' DB: setting canstack = false, objecttype 'teeth' not stackable DB: 'teeth' -> adding 1 x teeth DB: Creating new object (teeth). -DB: called addobject() for 1 cursed -1 pair of overalls, canstack = -1 -DB: ob is cursed (cursed -1 pair of overalls) -DB: Looking for object name 'cursed -1 pair of overalls' -checkobnames(): got exact match: 'pair of overalls' -DB: FOUND: ot->name = 'pair of overalls' -DB: setting canstack = false, objecttype 'pair of overalls' not stackable -DB: '1 cursed -1 pair of overalls' -> adding 1 x pair of overalls -DB: Creating new object (pair of overalls). -DB: called addobject() for 1 lockpick, canstack = -1 -DB: Looking for object name 'lockpick' -checkobnames(): got exact match: 'lockpick' -DB: FOUND: ot->name = 'lockpick' -DB: '1 lockpick' -> adding 1 x lockpick +DB: checking for 'flaming ' in '1 wooden barrel' +DB: checking for 'headless ' in '1 wooden barrel' +DB: checking for 'masterwork ' in '1 wooden barrel' +DB: checking for 'shoddy ' in '1 wooden barrel' +DB: called addobject() for 1 wooden barrel, canstack = -1 +DB: Looking for object name 'wooden barrel' +checkobnames(): got exact match: 'wooden barrel' +DB: FOUND: ot->name = 'wooden barrel' +DB: setting canstack = false, objecttype 'wooden barrel' not stackable +DB: '1 wooden barrel' -> adding 1 x wooden barrel +DB: Creating new object (wooden barrel). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in '1 scroll of light' +DB: checking for 'headless ' in '1 scroll of light' +DB: checking for 'masterwork ' in '1 scroll of light' +DB: checking for 'shoddy ' in '1 scroll of light' +DB: called addobject() for 1 scroll of light, canstack = -1 +DB: Looking for object name 'scroll of light' +checkobnames(): got exact match: 'scroll of light' +DB: FOUND: ot->name = 'scroll of light' +DB: '1 scroll of light' -> adding 1 x scroll of light DB: Looking for stacks... DB: No stacks found. -DB: Creating new object (lockpick). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for 1 +0 pair of sandals, canstack = -1 -DB: Looking for object name 'pair of sandals' -checkobnames(): got exact match: 'pair of sandals' -DB: FOUND: ot->name = 'pair of sandals' -DB: setting canstack = false, objecttype 'pair of sandals' not stackable -DB: '1 +0 pair of sandals' -> adding 1 x pair of sandals -DB: Creating new object (pair of sandals). -DB: called addobject() for 1 cursed +0 gas mask, canstack = -1 -DB: ob is cursed (cursed +0 gas mask) -DB: Looking for object name 'cursed +0 gas mask' -checkobnames(): got exact match: 'gas mask' -DB: FOUND: ot->name = 'gas mask' -DB: setting canstack = false, objecttype 'gas mask' not stackable -DB: '1 cursed +0 gas mask' -> adding 1 x gas mask -DB: Creating new object (gas mask). -DB: called addobject() for 1 potion of restoration, canstack = -1 -DB: Looking for object name 'potion of restoration' -checkobnames(): got exact match: 'potion of restoration' -DB: FOUND: ot->name = 'potion of restoration' -DB: '1 potion of restoration' -> adding 1 x potion of restoration +DB: Creating new object (scroll of light). +DB: checking for 'flaming ' in '1 +0 heavy flail' +DB: checking for 'headless ' in '1 +0 heavy flail' +DB: checking for 'masterwork ' in '1 +0 heavy flail' +DB: checking for 'shoddy ' in '1 +0 heavy flail' +DB: called addobject() for 1 +0 heavy flail, canstack = -1 +DB: Looking for object name 'heavy flail' +checkobnames(): got exact match: 'heavy flail' +DB: FOUND: ot->name = 'heavy flail' +DB: setting canstack = false, objecttype 'heavy flail' not stackable +DB: '1 +0 heavy flail' -> adding 1 x heavy flail +DB: Creating new object (heavy flail). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in '1 spellbook of darkness' +DB: checking for 'headless ' in '1 spellbook of darkness' +DB: checking for 'masterwork ' in '1 spellbook of darkness' +DB: checking for 'shoddy ' in '1 spellbook of darkness' +DB: called addobject() for 1 spellbook of darkness, canstack = -1 +DB: Looking for object name 'spellbook of darkness' +checkobnames(): got exact match: 'spellbook of darkness' +DB: FOUND: ot->name = 'spellbook of darkness' +DB: setting canstack = false, objecttype 'spellbook of darkness' not stackable +DB: '1 spellbook of darkness' -> adding 1 x spellbook of darkness +DB: Creating new object (spellbook of darkness). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in '1 scroll of flame burst' +DB: checking for 'headless ' in '1 scroll of flame burst' +DB: checking for 'masterwork ' in '1 scroll of flame burst' +DB: checking for 'shoddy ' in '1 scroll of flame burst' +DB: called addobject() for 1 scroll of flame burst, canstack = -1 +DB: Looking for object name 'scroll of flame burst' +checkobnames(): got exact match: 'scroll of flame burst' +DB: FOUND: ot->name = 'scroll of flame burst' +DB: '1 scroll of flame burst' -> adding 1 x scroll of flame burst DB: Looking for stacks... DB: No stacks found. -DB: Creating new object (potion of restoration). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for acidattack, canstack = -1 -DB: Looking for object name 'acidattack' -checkobnames(): got exact match: 'acidattack' -DB: FOUND: ot->name = 'acidattack' -DB: setting canstack = false, objecttype 'acidattack' not stackable -DB: 'acidattack' -> adding 1 x acidattack -DB: Creating new object (acidattack). -DB: called addobject() for acidattack, canstack = -1 -DB: Looking for object name 'acidattack' -checkobnames(): got exact match: 'acidattack' -DB: FOUND: ot->name = 'acidattack' -DB: setting canstack = false, objecttype 'acidattack' not stackable -DB: 'acidattack' -> adding 1 x acidattack -DB: Creating new object (acidattack). +DB: Creating new object (scroll of flame burst). +DB: checking for 'flaming ' in '1 +0 shoddy pair of cloth gloves' +DB: checking for 'headless ' in '1 +0 shoddy pair of cloth gloves' +DB: checking for 'masterwork ' in '1 +0 shoddy pair of cloth gloves' +DB: checking for 'shoddy ' in '1 +0 shoddy pair of cloth gloves' +DB: found obmod prefix 'shoddy ' +DB: called addobject() for 1 +0 pair of cloth gloves, canstack = -1 +DB: Looking for object name 'pair of cloth gloves' +checkobnames(): got exact match: 'pair of cloth gloves' +DB: FOUND: ot->name = 'pair of cloth gloves' +DB: setting canstack = false, objecttype 'pair of cloth gloves' not stackable +DB: '1 +0 shoddy pair of cloth gloves' -> adding 1 x pair of cloth gloves +DB: Creating new object (pair of cloth gloves). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +finding random lf with rarity val 85-100 + +-> possibility: xat, rarity=90 +-> possibility: newt, rarity=100 +-> possibility: bat, rarity=90 +-> possibility: giant rat, rarity=90 +-> possibility: giant fly, rarity=85 +-> possibility: glowbug, rarity=85 +got 6 possibilities. +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +rollhitdice() - rolling 2d4 + 2 +rollhitdice() - mod is +44% +rollhitdice() ---- die 1/2 == 6 +rollhitdice() ---- die 2/2 == 5 +TOTAL: 11 + -> modified to: 15 +DB: checking for 'flaming ' in 'fists' +DB: checking for 'headless ' in 'fists' +DB: checking for 'masterwork ' in 'fists' +DB: checking for 'shoddy ' in 'fists' DB: called addobject() for fists, canstack = -1 DB: Looking for object name 'fists' checkobnames(): got exact match: 'fists' @@ -620,83 +734,91 @@ DB: 'fists' -> adding 1 x fists DB: Creating new object (fists). givejob() starting. -processing normal flag: 162 -processing normal flag: 213 -processing normal flag: 125 -processing normal flag: 125 -processing normal flag: 125 -processing normal flag: 125 -processing normal flag: 125 -processing normal flag: 125 -processing normal flag: 125 -processing normal flag: 125 -processing normal flag: 125 -processing normal flag: 125 -processing normal flag: 125 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 185 -processing normal flag: 185 -processing normal flag: 185 -processing normal flag: 185 -processing normal flag: 185 -processing normal flag: 185 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 -processing normal flag: 184 +processing normal flag: 164 +processing normal flag: 215 +processing normal flag: 127 +processing normal flag: 127 +processing normal flag: 127 +processing normal flag: 127 +processing normal flag: 127 +processing normal flag: 127 +processing normal flag: 127 +processing normal flag: 127 +processing normal flag: 127 +processing normal flag: 127 +processing normal flag: 127 +processing normal flag: 128 +processing normal flag: 128 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 187 +processing normal flag: 187 +processing normal flag: 187 +processing normal flag: 187 +processing normal flag: 187 +processing normal flag: 187 +processing normal flag: 187 +processing normal flag: 187 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +processing normal flag: 186 +DB: checking for 'flaming ' in 'short sword of pyromania' +DB: checking for 'headless ' in 'short sword of pyromania' +DB: checking for 'masterwork ' in 'short sword of pyromania' +DB: checking for 'shoddy ' in 'short sword of pyromania' DB: called addobject() for short sword of pyromania, canstack = -1 DB: Looking for object name 'short sword of pyromania' checkobnames(): got exact match: 'short sword' @@ -704,6 +826,10 @@ DB: FOUND: ot->name = 'short sword' DB: setting canstack = false, objecttype 'short sword' not stackable DB: 'short sword of pyromania' -> adding 1 x short sword DB: Creating new object (short sword). +DB: checking for 'flaming ' in 'hand of god' +DB: checking for 'headless ' in 'hand of god' +DB: checking for 'masterwork ' in 'hand of god' +DB: checking for 'shoddy ' in 'hand of god' DB: called addobject() for hand of god, canstack = -1 DB: Looking for object name 'hand of god' checkobnames(): got exact match: 'hand of god' @@ -711,6 +837,10 @@ DB: FOUND: ot->name = 'hand of god' DB: setting canstack = false, objecttype 'hand of god' not stackable DB: 'hand of god' -> adding 1 x hand of god DB: Creating new object (hand of god). +DB: checking for 'flaming ' in '10 blocks of chocolate' +DB: checking for 'headless ' in '10 blocks of chocolate' +DB: checking for 'masterwork ' in '10 blocks of chocolate' +DB: checking for 'shoddy ' in '10 blocks of chocolate' DB: called addobject() for 10 blocks of chocolate, canstack = -1 DB: Looking for object name 'blocks of chocolate' checkobnames(): got exact match: 'block of chocolate' @@ -719,6 +849,10 @@ DB: '10 blocks of chocolate' -> adding 10 x block of chocolate DB: Looking for stacks... DB: No stacks found. DB: Creating new object (block of chocolate). +DB: checking for 'flaming ' in '10 vials of ambrosia' +DB: checking for 'headless ' in '10 vials of ambrosia' +DB: checking for 'masterwork ' in '10 vials of ambrosia' +DB: checking for 'shoddy ' in '10 vials of ambrosia' DB: called addobject() for 10 vials of ambrosia, canstack = -1 DB: Looking for object name 'vials of ambrosia' checkobnames(): got exact match: 'vial of ambrosia' @@ -727,6 +861,10 @@ DB: '10 vials of ambrosia' -> adding 10 x vial of ambrosia DB: Looking for stacks... DB: No stacks found. DB: Creating new object (vial of ambrosia). +DB: checking for 'flaming ' in 'leather armour' +DB: checking for 'headless ' in 'leather armour' +DB: checking for 'masterwork ' in 'leather armour' +DB: checking for 'shoddy ' in 'leather armour' DB: called addobject() for leather armour, canstack = -1 DB: Looking for object name 'leather armour' checkobnames(): got exact match: 'leather armour' @@ -734,18 +872,30 @@ DB: FOUND: ot->name = 'leather armour' DB: setting canstack = false, objecttype 'leather armour' not stackable DB: 'leather armour' -> adding 1 x leather armour DB: Creating new object (leather armour). +DB: checking for 'flaming ' in 'leather boots' +DB: checking for 'headless ' in 'leather boots' +DB: checking for 'masterwork ' in 'leather boots' +DB: checking for 'shoddy ' in 'leather boots' DB: called addobject() for leather boots, canstack = -1 DB: Looking for object name 'leather boots' DB: FOUND: ot->name = 'pair of leather boots' DB: setting canstack = false, objecttype 'pair of leather boots' not stackable DB: 'leather boots' -> adding 1 x pair of leather boots DB: Creating new object (pair of leather boots). +DB: checking for 'flaming ' in 'leather gloves' +DB: checking for 'headless ' in 'leather gloves' +DB: checking for 'masterwork ' in 'leather gloves' +DB: checking for 'shoddy ' in 'leather gloves' DB: called addobject() for leather gloves, canstack = -1 DB: Looking for object name 'leather gloves' DB: FOUND: ot->name = 'pair of leather gloves' DB: setting canstack = false, objecttype 'pair of leather gloves' not stackable DB: 'leather gloves' -> adding 1 x pair of leather gloves DB: Creating new object (pair of leather gloves). +DB: checking for 'flaming ' in 'graph paper' +DB: checking for 'headless ' in 'graph paper' +DB: checking for 'masterwork ' in 'graph paper' +DB: checking for 'shoddy ' in 'graph paper' DB: called addobject() for graph paper, canstack = -1 DB: Looking for object name 'graph paper' DB: FOUND: ot->name = 'piece of graph paper' @@ -753,6 +903,10 @@ DB: 'graph paper' -> adding 1 x piece of graph paper DB: Looking for stacks... DB: No stacks found. DB: Creating new object (piece of graph paper). +DB: checking for 'flaming ' in 'a digital watch' +DB: checking for 'headless ' in 'a digital watch' +DB: checking for 'masterwork ' in 'a digital watch' +DB: checking for 'shoddy ' in 'a digital watch' DB: called addobject() for a digital watch, canstack = -1 DB: Looking for object name 'a digital watch' checkobnames(): got exact match: 'digital watch' @@ -760,6 +914,10 @@ DB: FOUND: ot->name = 'digital watch' DB: setting canstack = false, objecttype 'digital watch' not stackable DB: 'a digital watch' -> adding 1 x digital watch DB: Creating new object (digital watch). +DB: checking for 'flaming ' in '10 blessed scrolls of create monster' +DB: checking for 'headless ' in '10 blessed scrolls of create monster' +DB: checking for 'masterwork ' in '10 blessed scrolls of create monster' +DB: checking for 'shoddy ' in '10 blessed scrolls of create monster' DB: called addobject() for 10 blessed scrolls of create monster, canstack = -1 DB: ob is blessed (blessed scrolls of create monster) DB: Looking for object name 'blessed scrolls of create monster' @@ -769,6 +927,10 @@ DB: '10 blessed scrolls of create monster' -> adding 10 x scroll of create monst DB: Looking for stacks... DB: No stacks found. DB: Creating new object (scroll of create monster). +DB: checking for 'flaming ' in 'ring of invulnerability' +DB: checking for 'headless ' in 'ring of invulnerability' +DB: checking for 'masterwork ' in 'ring of invulnerability' +DB: checking for 'shoddy ' in 'ring of invulnerability' DB: called addobject() for ring of invulnerability, canstack = -1 DB: Looking for object name 'ring of invulnerability' checkobnames(): got exact match: 'ring of invulnerability' @@ -776,6 +938,10 @@ DB: FOUND: ot->name = 'ring of invulnerability' DB: setting canstack = false, objecttype 'ring of invulnerability' not stackable DB: 'ring of invulnerability' -> adding 1 x ring of invulnerability DB: Creating new object (ring of invulnerability). +DB: checking for 'flaming ' in 'fists' +DB: checking for 'headless ' in 'fists' +DB: checking for 'masterwork ' in 'fists' +DB: checking for 'shoddy ' in 'fists' DB: called addobject() for fists, canstack = -1 DB: Looking for object name 'fists' checkobnames(): got exact match: 'fists' @@ -783,342 +949,10 @@ DB: FOUND: ot->name = 'fists' DB: setting canstack = false, objecttype 'fists' not stackable DB: 'fists' -> adding 1 x fists DB: Creating new object (fists). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' DB: called addobject() for teeth, canstack = -1 DB: Looking for object name 'teeth' checkobnames(): got exact match: 'teeth' @@ -1126,6 +960,10 @@ DB: FOUND: ot->name = 'teeth' DB: setting canstack = false, objecttype 'teeth' not stackable DB: 'teeth' -> adding 1 x teeth DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' DB: called addobject() for teeth, canstack = -1 DB: Looking for object name 'teeth' checkobnames(): got exact match: 'teeth' @@ -1133,307 +971,10 @@ DB: FOUND: ot->name = 'teeth' DB: setting canstack = false, objecttype 'teeth' not stackable DB: 'teeth' -> adding 1 x teeth DB: Creating new object (teeth). -DB: called addobject() for tail, canstack = -1 -DB: Looking for object name 'tail' -checkobnames(): got exact match: 'tail' -DB: FOUND: ot->name = 'tail' -DB: setting canstack = false, objecttype 'tail' not stackable -DB: 'tail' -> adding 1 x tail -DB: Creating new object (tail). -DB: called addobject() for tail, canstack = -1 -DB: Looking for object name 'tail' -checkobnames(): got exact match: 'tail' -DB: FOUND: ot->name = 'tail' -DB: setting canstack = false, objecttype 'tail' not stackable -DB: 'tail' -> adding 1 x tail -DB: Creating new object (tail). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' DB: called addobject() for teeth, canstack = -1 DB: Looking for object name 'teeth' checkobnames(): got exact match: 'teeth' @@ -1441,6 +982,10 @@ DB: FOUND: ot->name = 'teeth' DB: setting canstack = false, objecttype 'teeth' not stackable DB: 'teeth' -> adding 1 x teeth DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' DB: called addobject() for teeth, canstack = -1 DB: Looking for object name 'teeth' checkobnames(): got exact match: 'teeth' @@ -1448,1280 +993,10 @@ DB: FOUND: ot->name = 'teeth' DB: setting canstack = false, objecttype 'teeth' not stackable DB: 'teeth' -> adding 1 x teeth DB: Creating new object (teeth). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' DB: called addobject() for teeth, canstack = -1 DB: Looking for object name 'teeth' checkobnames(): got exact match: 'teeth' @@ -2729,13 +1004,10 @@ DB: FOUND: ot->name = 'teeth' DB: setting canstack = false, objecttype 'teeth' not stackable DB: 'teeth' -> adding 1 x teeth DB: Creating new object (teeth). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' DB: called addobject() for teeth, canstack = -1 DB: Looking for object name 'teeth' checkobnames(): got exact match: 'teeth' @@ -2743,13 +1015,54 @@ DB: FOUND: ot->name = 'teeth' DB: setting canstack = false, objecttype 'teeth' not stackable DB: 'teeth' -> adding 1 x teeth DB: Creating new object (teeth). -DB: called addobject() for claws, canstack = -1 -DB: Looking for object name 'claws' -checkobnames(): got exact match: 'claws' -DB: FOUND: ot->name = 'claws' -DB: setting canstack = false, objecttype 'claws' not stackable -DB: 'claws' -> adding 1 x claws -DB: Creating new object (claws). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' DB: called addobject() for teeth, canstack = -1 DB: Looking for object name 'teeth' checkobnames(): got exact match: 'teeth' @@ -2757,6 +1070,241 @@ DB: FOUND: ot->name = 'teeth' DB: setting canstack = false, objecttype 'teeth' not stackable DB: 'teeth' -> adding 1 x teeth DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2764,6 +1312,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2771,6 +1323,54 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2778,6 +1378,329 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'steak knife' +DB: checking for 'headless ' in 'steak knife' +DB: checking for 'masterwork ' in 'steak knife' +DB: checking for 'shoddy ' in 'steak knife' +DB: called addobject() for steak knife, canstack = -1 +DB: Looking for object name 'steak knife' +checkobnames(): got exact match: 'steak knife' +DB: FOUND: ot->name = 'steak knife' +DB: setting canstack = false, objecttype 'steak knife' not stackable +DB: 'steak knife' -> adding 1 x steak knife +DB: Creating new object (steak knife). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2785,6 +1708,440 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'masterwork steak knife' +DB: checking for 'headless ' in 'masterwork steak knife' +DB: checking for 'masterwork ' in 'masterwork steak knife' +DB: found obmod prefix 'masterwork ' +DB: checking for 'shoddy ' in 'steak knife' +DB: called addobject() for steak knife, canstack = -1 +DB: Looking for object name 'steak knife' +checkobnames(): got exact match: 'steak knife' +DB: FOUND: ot->name = 'steak knife' +DB: setting canstack = false, objecttype 'steak knife' not stackable +DB: 'masterwork steak knife' -> adding 1 x steak knife +DB: Creating new object (steak knife). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2792,6 +2149,32 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2799,6 +2182,717 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +nclasses is 0 +nclasses is 0 +nclasses is 0 +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2806,6 +2900,21 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2813,6 +2922,21 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2820,6 +2944,395 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2827,6 +3340,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2834,6 +3351,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2841,6 +3362,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2848,6 +3373,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2855,6 +3384,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2862,6 +3395,681 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2869,6 +4077,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2876,6 +4088,32 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2883,6 +4121,384 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2890,6 +4506,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2897,6 +4517,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2904,6 +4528,780 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2911,6 +5309,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2918,6 +5320,395 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2925,6 +5716,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2932,6 +5727,21 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2939,6 +5749,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2946,6 +5760,692 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2953,6 +6453,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2960,6 +6464,21 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2967,6 +6486,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2974,6 +6497,417 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2981,6 +6915,736 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2988,6 +7652,10 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' DB: called addobject() for claws, canstack = -1 DB: Looking for object name 'claws' checkobnames(): got exact match: 'claws' @@ -2995,31 +7663,46146 @@ DB: FOUND: ot->name = 'claws' DB: setting canstack = false, objecttype 'claws' not stackable DB: 'claws' -> adding 1 x claws DB: Creating new object (claws). -DB: called addobject() for acidattack, canstack = -1 -DB: Looking for object name 'acidattack' -checkobnames(): got exact match: 'acidattack' -DB: FOUND: ot->name = 'acidattack' -DB: setting canstack = false, objecttype 'acidattack' not stackable -DB: 'acidattack' -> adding 1 x acidattack -DB: Creating new object (acidattack). -DB: called addobject() for acidattack, canstack = -1 -DB: Looking for object name 'acidattack' -checkobnames(): got exact match: 'acidattack' -DB: FOUND: ot->name = 'acidattack' -DB: setting canstack = false, objecttype 'acidattack' not stackable -DB: 'acidattack' -> adding 1 x acidattack -DB: Creating new object (acidattack). -DB: called addobject() for acidattack, canstack = -1 -DB: Looking for object name 'acidattack' -checkobnames(): got exact match: 'acidattack' -DB: FOUND: ot->name = 'acidattack' -DB: setting canstack = false, objecttype 'acidattack' not stackable -DB: 'acidattack' -> adding 1 x acidattack -DB: Creating new object (acidattack). -DB: called addobject() for acidattack, canstack = -1 -DB: Looking for object name 'acidattack' -checkobnames(): got exact match: 'acidattack' -DB: FOUND: ot->name = 'acidattack' -DB: setting canstack = false, objecttype 'acidattack' not stackable -DB: 'acidattack' -> adding 1 x acidattack -DB: Creating new object (acidattack). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +nclasses is 0 +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +nclasses is 0 +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +nclasses is 0 +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +checkobnames(): got exact match: 'tentacle' +initial dam[0] = 13 +adjusted for lf to dam[0] = 0 +reduced by armour to dam[0] = 0 +DB: checking for 'flaming ' in 'splash of blood' +DB: checking for 'headless ' in 'splash of blood' +DB: checking for 'masterwork ' in 'splash of blood' +DB: checking for 'shoddy ' in 'splash of blood' +DB: called addobject() for splash of blood, canstack = -1 +DB: Looking for object name 'splash of blood' +checkobnames(): got exact match: 'splash of blood' +DB: FOUND: ot->name = 'splash of blood' +DB: 'splash of blood' -> adding 1 x splash of blood +DB: Looking for stacks... +DB: No stacks found. +DB: Creating new object (splash of blood). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +nclasses is 0 +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'claws' +DB: checking for 'headless ' in 'claws' +DB: checking for 'masterwork ' in 'claws' +DB: checking for 'shoddy ' in 'claws' +DB: called addobject() for claws, canstack = -1 +DB: Looking for object name 'claws' +checkobnames(): got exact match: 'claws' +DB: FOUND: ot->name = 'claws' +DB: setting canstack = false, objecttype 'claws' not stackable +DB: 'claws' -> adding 1 x claws +DB: Creating new object (claws). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'teeth' +DB: checking for 'headless ' in 'teeth' +DB: checking for 'masterwork ' in 'teeth' +DB: checking for 'shoddy ' in 'teeth' +DB: called addobject() for teeth, canstack = -1 +DB: Looking for object name 'teeth' +checkobnames(): got exact match: 'teeth' +DB: FOUND: ot->name = 'teeth' +DB: setting canstack = false, objecttype 'teeth' not stackable +DB: 'teeth' -> adding 1 x teeth +DB: Creating new object (teeth). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'zapper' +DB: checking for 'headless ' in 'zapper' +DB: checking for 'masterwork ' in 'zapper' +DB: checking for 'shoddy ' in 'zapper' +DB: called addobject() for zapper, canstack = -1 +DB: Looking for object name 'zapper' +checkobnames(): got exact match: 'zapper' +DB: FOUND: ot->name = 'zapper' +DB: setting canstack = false, objecttype 'zapper' not stackable +DB: 'zapper' -> adding 1 x zapper +DB: Creating new object (zapper). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'tentacle' +DB: checking for 'headless ' in 'tentacle' +DB: checking for 'masterwork ' in 'tentacle' +DB: checking for 'shoddy ' in 'tentacle' +DB: called addobject() for tentacle, canstack = -1 +DB: Looking for object name 'tentacle' +checkobnames(): got exact match: 'tentacle' +DB: FOUND: ot->name = 'tentacle' +DB: setting canstack = false, objecttype 'tentacle' not stackable +DB: 'tentacle' -> adding 1 x tentacle +DB: Creating new object (tentacle). +DB: checking for 'flaming ' in 'human corpse' +DB: checking for 'headless ' in 'human corpse' +DB: checking for 'masterwork ' in 'human corpse' +DB: checking for 'shoddy ' in 'human corpse' +DB: called addobject() for human corpse, canstack = -1 +DB: FOUND: ot->name = 'corpse' +DB: 'human corpse' -> adding 1 x corpse +DB: Looking for stacks... +DB: No stacks found. +DB: Creating new object (corpse). +nclasses is 0 diff --git a/map.c b/map.c index 5b88783..ba7bbd4 100644 --- a/map.c +++ b/map.c @@ -32,6 +32,8 @@ cell_t *addcell(map_t *m, int x, int y) { cell->lf = NULL; cell->roomid = -1; cell->lit = L_NOTLIT; + cell->origlit = L_NOTLIT; + cell->littimer = 0; cell->writing = NULL; cell->known = B_FALSE; return cell; @@ -358,7 +360,8 @@ void calclight(map_t *map) { for (y = 0; y < map->h; y++) { for (x = 0; x < map->w; x++) { c = getcellat(map, x,y); - if (c && (c->lit == L_PERM) && (c->lit != L_DARK)) c->lit = B_FALSE; + //if (c && (c->lit == L_PERMLIGHT) && (c->lit != L_PERMDARK)) c->lit = B_FALSE; + if (c && (c->lit != L_PERMLIGHT) && (c->lit != L_PERMDARK)) c->lit = B_FALSE; } } for (y = 0; y < map->h; y++) { @@ -367,23 +370,28 @@ void calclight(map_t *map) { if (c) { int radius; object_t *o; + // lit based on depth - if ((map->depth <= 5) && (c->lit != L_DARK)) { - c->lit = L_PERM; + if ((map->depth <= 5) && (c->lit != L_PERMDARK)) { + c->lit = L_PERMLIGHT; } + + // TODO: has dark producing lf? + // TODO: has dark producing object? + // has lightproducing lf? (ie.hasflag f_produceslight) if (c->lf) { if (lfhasflag(c->lf, F_PRODUCESLIGHT)) { sumflags(c->lf->flags, F_PRODUCESLIGHT, &radius, NULL, NULL); - makelitradius(c, radius, L_TEMP); + makelitradius(c, radius, L_TEMP, -1); } // objects in hands or on body... for (o = c->lf->pack->first ; o ; o = o->next) { if (obproduceslight(o) && isequipped(o)) { sumflags(o->flags, F_PRODUCESLIGHT, &radius, NULL, NULL); - makelitradius(c, radius, L_TEMP); + makelitradius(c, radius, L_TEMP, -1); } } } @@ -391,7 +399,7 @@ void calclight(map_t *map) { for (o = c->obpile->first ; o ; o = o->next) { if (obproduceslight(o)) { sumflags(o->flags, F_PRODUCESLIGHT, &radius, NULL, NULL); - makelitradius(c, radius, L_TEMP); + makelitradius(c, radius, L_TEMP, -1); } } @@ -1244,7 +1252,9 @@ void createroom(map_t *map, int minx, int miny, int w, int h, int roomid) { // make it a border or room if ((y == miny) || (y == maxy) || (x == minx) || (x == maxx)) { - setcelltype(cell, CT_ROOMWALL); + if (cell->type->solid) { + setcelltype(cell, CT_ROOMWALL); + } } else { setcelltype(cell, CT_ROOM); } @@ -1835,6 +1845,9 @@ int getslipperyness(cell_t *c, object_t **slipob) { thisslip *= o->amt; totalslip += thisslip; } + + totalslip *= 2; + return totalslip; } @@ -1951,7 +1964,7 @@ int isinscanrange(cell_t *c, void **thing, char *desc, char *glyph) { int islit(cell_t *c) { switch (c->lit) { case L_TEMP: - case L_PERM: + case L_PERMLIGHT: return B_TRUE; default: break; @@ -2034,16 +2047,23 @@ void makedoor(cell_t *cell) { } -void makelit(cell_t *c, enum LIGHTLEV how) { +void makelit(cell_t *c, enum LIGHTLEV how, int howlong) { // don't override permenant light with temp light! - if ((c->lit == L_PERM) && (how == L_TEMP)) { - return; - } else { - c->lit = how; + //if ((c->lit == L_PERMLIGHT) && (how == L_TEMP)) { + if (how == L_TEMP) { + //if ((c->lit == L_PERMLIGHT) || (c->lit == L_PERMDARK)) { + if (c->lit == L_PERMLIGHT) { + return; + } } + if (howlong > 0) { + c->littimer = howlong; + c->origlit = c->lit; + } + c->lit = how; } -void makelitradius(cell_t *c, int radius, enum LIGHTLEV how) { +void makelitradius(cell_t *c, int radius, enum LIGHTLEV how, int howlong) { int x,y; cell_t *c2; @@ -2054,7 +2074,7 @@ void makelitradius(cell_t *c, int radius, enum LIGHTLEV how) { c2 = getcellat(c->map, x, y); if (c2 && (getcelldistorth(c, c2) <= radius)) { if (cellhaslos(c,c2)) { - makelit(c2, how); + makelit(c2, how,howlong); } } } diff --git a/map.h b/map.h index b65273a..af65116 100644 --- a/map.h +++ b/map.h @@ -50,7 +50,7 @@ int isnewcellok(cell_t *cell, char *err); int isonmap(map_t *map, int x, int y); int iswallindir(cell_t *cell, int dir); void makedoor(cell_t *cell); -void makelit(cell_t *c, enum LIGHTLEV how); -void makelitradius(cell_t *c, int radius, enum LIGHTLEV how); +void makelit(cell_t *c, enum LIGHTLEV how, int howlong); +void makelitradius(cell_t *c, int radius, enum LIGHTLEV how, int howlong); void setcelltype(cell_t *cell, int id); void updateknowncells(void); diff --git a/move.c b/move.c index 220edeb..1321cd1 100644 --- a/move.c +++ b/move.c @@ -18,6 +18,8 @@ extern lifeform_t *player; extern int statdirty; extern int needredraw; +extern int gamestarted; + extern enum ERROR reason; extern void *rdata; @@ -454,6 +456,16 @@ int movelf(lifeform_t *lf, cell_t *newcell) { } } + // remove grabs + f = lfhasflag(lf, F_GRABBING); + if (f) { + lifeform_t *grabee; + grabee = findlf(NULL, f->val[0]); + assert(grabee); + killflagsofid(grabee->flags, F_GRABBEDBY); + killflagsofid(lf->flags, F_GRABBING); + } + // check ground objects if (!isairborne(lf)) { @@ -522,16 +534,18 @@ int movelf(lifeform_t *lf, cell_t *newcell) { } // does anyone else see you? - for (l = newcell->map->lf ; l ; l = l->next) { - if (l != lf) { - if (haslos(l, newcell)) { - interrupt(l); - if (isplayer(l)) { - if (lfhasflag(l, F_RUNNING) || lfhasflag(l, F_RESTING)) { - char lfname2[BUFLEN]; - getlfname(lf, lfname); - sprintf(lfname2, "%s",noprefix(lfname)); - msg("%s %s comes into view.",isvowel(lfname2[0]) ? "An" : "A", lfname2); + if (gamestarted) { + for (l = newcell->map->lf ; l ; l = l->next) { + if (l != lf) { + if (haslos(l, newcell)) { + interrupt(l); + if (isplayer(l)) { + if (lfhasflag(l, F_RUNNING) || lfhasflag(l, F_RESTING)) { + char lfname2[BUFLEN]; + getlfname(lf, lfname); + sprintf(lfname2, "%s",noprefix(lfname)); + msg("%s %s comes into view.",isvowel(lfname2[0]) ? "An" : "A", lfname2); + } } } } @@ -545,6 +559,10 @@ int movelf(lifeform_t *lf, cell_t *newcell) { // does other game things like telling the player // what is here. int moveto(lifeform_t *lf, cell_t *newcell) { + return real_moveto(lf,newcell,B_FALSE); +} + +int real_moveto(lifeform_t *lf, cell_t *newcell, int dontclearmsg) { char lfname[BUFLEN]; int didmsg; @@ -553,6 +571,10 @@ int moveto(lifeform_t *lf, cell_t *newcell) { // actually do the move didmsg = movelf(lf, newcell); + if (dontclearmsg) { + didmsg = B_TRUE; + } + // tell player about things if (!isdead(lf)) { // some lifeforms can go through things @@ -1058,14 +1080,27 @@ int trymove(lifeform_t *lf, int dir) { taketime(lf, getmovespeed(lf)); break; case E_GRABBEDBY: - if (isplayer(lf)) { - char lfname[BUFLEN]; - if (rdata) { - getlfname((lifeform_t *)rdata, lfname); + if (rdata) { + lifeform_t *grabbedby; + char gbname[BUFLEN]; + // skill check to escape. + grabbedby = (lifeform_t *)rdata; + getlfname(grabbedby, gbname); + if (!cell->lf && skillcheckvs(lf, SC_STR, 0, grabbedby, SC_STR, 0)) { + // broke free + killflagsofid(lf->flags, F_GRABBEDBY); + killflagsofid(grabbedby->flags, F_GRABBING); + // move - don't clear the 'you break free from' msg + real_moveto(lf, cell, B_TRUE); } else { - sprintf(lfname, "whatever is holding you"); + if (isplayer(lf)) { + msg("You cannot get away from %s!",gbname); + } + } + } else { + if (isplayer(lf)) { + msg("You cannot get away from whatever is holding you!"); } - msg("You cannot get away from %s!",lfname); } taketime(lf, getmovespeed(lf)); break; diff --git a/move.h b/move.h index cf24f67..f05ada0 100644 --- a/move.h +++ b/move.h @@ -14,6 +14,7 @@ int knockback(lifeform_t *lf, int dir, int howfar, lifeform_t *pusher); int moveawayfrom(lifeform_t *lf, cell_t *dst); int movelf(lifeform_t *lf, cell_t *newcell); int moveto(lifeform_t *lf, cell_t *newcell); +int real_moveto(lifeform_t *lf, cell_t *newcell, int dontclearmsg); int movetowards(lifeform_t *lf, cell_t *dst); int opendoorat(lifeform_t *lf, cell_t *c); int opendoor(lifeform_t *lf, object_t *o); diff --git a/nexus.c b/nexus.c index bddd874..f5163cb 100644 --- a/nexus.c +++ b/nexus.c @@ -19,13 +19,16 @@ material_t *material = NULL,*lastmaterial = NULL; objectclass_t *objectclass = NULL,*lastobjectclass = NULL; objecttype_t *objecttype = NULL,*lastobjecttype = NULL; +brand_t *firstbrand = NULL,*lastbrand = NULL; obmod_t *firstobmod = NULL,*lastobmod = NULL; celltype_t *firstcelltype = NULL,*lastcelltype = NULL; command_t *firstcommand = NULL,*lastcommand = NULL; race_t *firstrace = NULL,*lastrace = NULL; job_t *firstjob = NULL,*lastjob = NULL; +skill_t *firstskill = NULL,*lastskill = NULL; map_t *firstmap = NULL,*lastmap = NULL; knowledge_t *knowledge = NULL, *lastknowledge = NULL; +hiddenname_t *firsthiddenname = NULL, *lasthiddenname = NULL; // maintains unique lifeform ID numbers long nextlfid = 0; @@ -311,7 +314,7 @@ void cleanup(void) { // free maps // free knowledge - // free obmods + // free brands // free obtypes // free objects // free materials @@ -447,7 +450,7 @@ void getrarity(int depth, int *min, int *max, int range) { //*max = mid + range; if (*max > 100) *max = 100; *max = 100; - if (*min > 75) *min = 75; + if (*min > 85) *min = 85; if (*max < 25) *max = 25; } @@ -459,6 +462,7 @@ int init(void) { initcommands(); initobjects(); + initskills(); initjobs(); initrace(); @@ -572,7 +576,10 @@ int rolldie(int ndice, int sides) { int rollhitdice(lifeform_t *lf) { flag_t *f; int ndice, plus; - int roll; + int roll = 0; + int i; + float mod; + int db = B_TRUE; f = hasflag(lf->flags, F_HITDICE); if (f) { @@ -583,7 +590,33 @@ int rollhitdice(lifeform_t *lf) { ndice = 1; plus = 0; } - roll = rolldie(ndice, 4) + plus; + if (db && isplayer(lf)) dblog("rollhitdice() - rolling %dd4 + %d",ndice,plus); + + mod = getstatmod(lf, A_CON); + if (mod > 0) mod *= 2; + if (db && isplayer(lf)) dblog("rollhitdice() - mod is +%0.0f%%",mod); + + if (ndice == 0) { + int thisroll; + // just the bonus + thisroll = plus; + thisroll = thisroll + (int)((float)thisroll * (mod/100)); + if (thisroll < 1) thisroll = 1; + + roll += thisroll; + } else { + for (i = 0; i < ndice; i++) { + int thisroll; + thisroll = rolldie(1, 4) + plus; + if (thisroll < 1) thisroll = 1; + if (db && isplayer(lf)) dblog("rollhitdice() ---- die %d/%d == %d",i+1,ndice,thisroll); + + roll += thisroll; + } + } + if (db && isplayer(lf)) dblog("TOTAL: %d",roll); + roll = roll + (int)((float)roll * (mod/100)); + if (db && isplayer(lf)) dblog(" -> modified to: %d",roll); return roll; } @@ -808,6 +841,14 @@ void timeeffectsworld(map_t *map) { timeeffectsob(o); } // end foreach object here + + // expire light effects + if (c->littimer > 0) { + c->littimer--; + if (c->littimer == 0) { + c->lit = c->origlit; + } + } } } } // end for (y... diff --git a/objects.c b/objects.c index 82072ca..bbfa141 100644 --- a/objects.c +++ b/objects.c @@ -17,8 +17,10 @@ #include "text.h" extern knowledge_t *knowledge, *lastknowledge; +extern hiddenname_t *firsthiddenname, *lasthiddenname; extern objecttype_t *objecttype,*lastobjecttype; extern objectclass_t *objectclass,*lastobjectclass; +extern brand_t *firstbrand,*lastbrand; extern obmod_t *firstobmod,*lastobmod; extern material_t *material,*lastmaterial; @@ -29,6 +31,7 @@ extern int nretobs; extern map_t *firstmap; extern int gamestarted; +extern int loading; extern long curtime; @@ -38,133 +41,6 @@ extern int reason; extern int needredraw; -char *bookname[] = { - "ancient book", - "black book", - "blue book", - "clean book", - "creepy book", - "damp book", - "dog-eared book", - "dusty book", - "eerie book", - "fancy book", - "frosty book", - "furry book", - "glowing book", - "hot book", - "humming book", - "icy book", - "jiggling book", - "leatherbound book", - "luminous book", - "mouldy book", - "muddy book", - "night-black book", - "orange book", - "papyrus book", - "pink book", - "plain book", - "quivering book", - "rainbow-coloured book", - "red book", - "slimy book", - "small book", - "soggy book", - "thin book", - "thick book", - "tiny book", - "vibrating book", - "vine-covered book", - "warm book", - "worn book", - "wrinkled book", - NULL -}; -int numbooknames; - -char *scrollname[] = { - "scroll titled ABRA CA DABRA", - "scroll titled BARBAR", - "scroll titled CRATOL JEM", - "scroll titled DELENTH YIN", - "scroll titled ETEE NOM", - "scroll titled FIE JOOHM", - "scroll titled GREE VII", - "scroll titled HTEB IH", - "scroll titled HOCUS POCUS", - "scroll titled ILU-MA ZEE", - "scroll titled JUNIPO CHECK", - "scroll titled KARELS", - "scroll titled LUMLEE GWON", - "scroll titled MARIGON", - "scroll titled MAXIMOR BLATHUS", - "scroll titled NORTH", - "scroll titled REZZ KINETO", - "scroll titled SHAZZARIO", - "scroll titled THERIUM LARGOS", - "scroll titled VOLTR YI MEN", - "scroll titled ZAREL NOR", - NULL -}; -int numscrollnames; - -char *potionname[] = { - // colours - "aqua potion", - "azure potion", - "blue potion", - "brown potion", - "clear potion", - "cyan potion", - "dark potion", - "effervescent potion", - "fizzy potion", - "fuming potion", - "green potion", - "indigo potion", - "luminous potion", // should produce light - "magenta potion", - "orange potion", - "red potion", - "violet potion", - "yellow potion", - // other descriptions - "bubbling potion", - "fizzy potion", - "gluggy potion", - "steaming potion", - NULL -}; -int numpotnames; - -char *wandname[] = { - "amethyst wand", - "brass wand", - "diamond wand", - "emerald wand", - "flourescent wand", - "gold wand", - "iridium wand", - "luminous wand", - "ruby wand", - "zinc wand", - "sapphire wand", - "wooden wand", - NULL -}; -int numwandnames; - -char *ringname[] = { - // gems - "ruby ring", - "diamond ring", - "emerald ring", - "silver ring", - "gold ring", - NULL -}; -int numringnames; char letorder[MAXPILEOBS] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', @@ -196,6 +72,41 @@ enum OBCLASS sortorder[] = { long nextoid = 0; +brand_t *addbrand(enum BRAND id, char *suffix, enum BODYPART bp) { + brand_t *a, *om; + char buf[BUFLEN]; + //flag_t *f; + + // does this modj already exist? + om = findbrand(id); + assert(!om); + + // add to the end of the list + if (firstbrand == NULL) { + firstbrand = malloc(sizeof(brand_t)); + a = firstbrand; + a->prev = NULL; + } else { + // go to end of list + a = lastbrand; + a->next = malloc(sizeof(brand_t)); + a->next->prev = a; + a = a->next; + } + lastbrand = a; + a->next = NULL; + + // props + a->id = id; + a->bp = bp; + sprintf(buf, " %s",suffix); + a->suffix = strdup(buf); + + a->flags = addflagpile(NULL, NULL); + + return a; +} + object_t *addemptyob(obpile_t *where, object_t *o) { char buf[BUFLEN]; @@ -228,6 +139,32 @@ object_t *addemptyob(obpile_t *where, object_t *o) { return empty; } +hiddenname_t *addhiddenname(enum OBCLASS obclass, char *text) { + hiddenname_t *a; + + // add to the end of the list + if (firsthiddenname == NULL) { + firsthiddenname = malloc(sizeof(hiddenname_t)); + a = firsthiddenname; + a->prev = NULL; + } else { + // go to end of list + a = lasthiddenname; + a->next = malloc(sizeof(hiddenname_t)); + a->next->prev = a; + a = a->next; + } + lasthiddenname = a; + a->next = NULL; + + // props + a->obclass = obclass; + a->text = strdup(text); + a->used = B_FALSE; + + return a; +} + knowledge_t *addknowledge(enum OBCLASS id, char *hiddenname, int known) { knowledge_t *a; @@ -334,10 +271,12 @@ object_t *addobject(obpile_t *where, char *name, int canstack) { //flag_t *f; char *localname; int wantblessed = B_UNCURSED; - int wantflaming = B_FALSE; - int wantheadless = B_FALSE; race_t *corpserace = NULL; + brand_t *br; obmod_t *om; + obmod_t *wantom[MAXOBMODS]; + int nom = 0; + int n; localname = strdup(name); @@ -346,13 +285,15 @@ object_t *addobject(obpile_t *where, char *name, int canstack) { // check for premods. eg. "flaming xxx" - if (strstr(localname, "flaming ") == localname) { - wantflaming = B_TRUE; - localname = strrep(localname, "flaming ", "", NULL); - } - if (strstr(localname, "headless ") == localname) { - wantheadless = B_TRUE; - localname = strrep(localname, "headless ", "", NULL); + for (om = firstobmod ; om ; om = om->next) { + if (db) dblog("DB: checking for '%s' in '%s'",om->prefix, localname); + if (strstr(localname, om->prefix)) { + localname = strrep(localname, om->prefix, "", NULL); + if (db) dblog("DB: found obmod prefix '%s'",om->prefix); + + wantom[nom] = om; + nom++; + } } if (db) { @@ -617,11 +558,12 @@ object_t *addobject(obpile_t *where, char *name, int canstack) { } - if (o) { + // other special changes we need to make based on what was + // asked for + if (!loading && o) { char *p2; int bonus = 0; - // corpses - fill in details if (o->type->id == OT_CORPSE) { flag_t *rf, *cf; @@ -755,18 +697,84 @@ object_t *addobject(obpile_t *where, char *name, int canstack) { } - if (wantflaming) { - addflag(o->flags, F_ONFIRE, B_TRUE, NA, NA, NULL); - if (o->type->obclass->id == OC_WEAPON) { - if (!isimmuneto(o->flags, DT_FIRE)) { - addflag(o->flags, F_DTIMMUNE, DT_FIRE, NA, NA, NULL); - } + for (n = 0; n < nom; n++) { + // add flags from obmod + copyflags(o->flags, wantom[n]->flags, FROMOBMOD); + // other effects... + switch (wantom[n]->id) { + case OM_FLAMING: // flaming weapons are immune to fire + if (o->type->obclass->id == OC_WEAPON) { + if (!isimmuneto(o->flags, DT_FIRE)) { + addflag(o->flags, F_DTIMMUNE, DT_FIRE, NA, NA, NULL); + } + } + break; + case OM_MASTERWORK: + if (isweapon(o) || isarmour(o)) { + flag_t *f; + f = hasflag(o->flags, F_OBHP); + if (f) { + f->val[0] *= 2; + f->val[1] *= 2; + } + } + if (isweapon(o)) { + flag_t *f; + // always does near high end of damage range + f = hasflag(o->flags, F_DAM); + if (f) { + int ndice,dsides,bonus; + ndice = f->val[0]; + dsides = f->val[1]; + bonus = f->val[2]; if (bonus < 0) bonus = 0; + // half the number of sides on the dice (dsides). + dsides /= 2; if (dsides < 1) dsides = 1; + // increase modifier by (ndice * dsides) + bonus += (ndice * dsides); + if (bonus <= 0) { + bonus = NA; + } + f->val[0] = ndice; + f->val[1] = dsides; + f->val[2] = bonus; + } + } + break; + case OM_SHODDY: + if (isweapon(o) || isarmour(o)) { + flag_t *f; + f = hasflag(o->flags, F_OBHP); + if (f) { + f->val[0] /= 2; if (f->val[0] < 1) f->val[0] = 1; + f->val[1] /= 2; if (f->val[1] < 1) f->val[1] = 1; + + } + } + if (isweapon(o)) { + flag_t *f; + // half the damage + f = hasflag(o->flags, F_DAM); + if (f) { + int dsides,bonus; + dsides = f->val[1]; + bonus = f->val[2]; if (bonus < 0) bonus = 0; + // half the number of sides on the dice (dsides). + dsides /= 2; + // half modifier + if (bonus > 0) { + bonus /= 2; if (bonus <= 0) bonus = NA; + } + f->val[1] = dsides; + f->val[2] = bonus; + } + } + break; + + default: + break; } } - if (wantheadless) { - addflag(o->flags, F_HEADLESS, B_TRUE, NA, NA, NULL); - } - + // check for bonuses. eg. "+1" p2 = strchr(p, '+'); @@ -808,12 +816,12 @@ object_t *addobject(obpile_t *where, char *name, int canstack) { addflag_real(o->flags, F_BONUS, bonus, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); // check for postmods. eg. "xxx of pyromania" - for (om = firstobmod ; om ; om = om->next) { - if (strstr(name, om->suffix)) { - // does this obmod apply to this objecttype? - if (obmodappliesto(om, o->type)) { - copyflags(o->flags, om->flags, FROMOBMOD); - addflag(o->flags, F_HASOBMOD, om->id, NA, NA, NULL); + for (br = firstbrand ; br ; br = br->next) { + if (strstr(name, br->suffix)) { + // does this brand apply to this objecttype? + if (brandappliesto(br, o->type)) { + copyflags(o->flags, br->flags, FROMBRAND); + addflag(o->flags, F_HASBRAND, br->id, NA, NA, NULL); } else { // doesn't exist! return NULL; @@ -895,7 +903,7 @@ int addobburst(cell_t *where, int range, int dirtype, char *name) { } -obmod_t *addobmod(enum OBMOD id, char *suffix, enum BODYPART bp) { +obmod_t *addobmod(enum OBMOD id, char *prefix) { obmod_t *a, *om; char buf[BUFLEN]; //flag_t *f; @@ -921,9 +929,8 @@ obmod_t *addobmod(enum OBMOD id, char *suffix, enum BODYPART bp) { // props a->id = id; - a->bp = bp; - sprintf(buf, " %s",suffix); - a->suffix = strdup(buf); + sprintf(buf, "%s ",prefix); + a->prefix = strdup(buf); a->flags = addflagpile(NULL, NULL); @@ -1589,6 +1596,14 @@ object_t *findobl(obpile_t *op, char let) { return NULL; } +brand_t *findbrand(enum BRAND id) { + brand_t *om; + for (om = firstbrand ; om ; om = om->next) { + if (om->id == id) return om; + } + return NULL; +} + obmod_t *findobmod(enum OBMOD id) { obmod_t *om; for (om = firstobmod ; om ; om = om->next) { @@ -1611,7 +1626,7 @@ objecttype_t *findotn(char *name) { char *modname; char *p; int db = B_FALSE; - obmod_t *om; + brand_t *om; modname = strdup(name); @@ -1649,7 +1664,7 @@ objecttype_t *findotn(char *name) { modname = strrep(modname, "flaming ", "", NULL); modname = strrep(modname, "headless ", "", NULL); // strip out post mods - for (om = firstobmod; om ; om = om->next) { + for (om = firstbrand; om ; om = om->next) { modname = strrep(modname, om->suffix, "", NULL); } @@ -1825,49 +1840,20 @@ void genhiddennames(void) { } char *genhiddenname(enum OBCLASS id) { - char temp[BUFLEN]; - char *name; - int *numnames; - int sel,i; - char **namelist; + hiddenname_t *hn; - switch (id) { - case OC_BOOK: - namelist = bookname; - numnames = &numbooknames; - break; - case OC_SCROLL: - namelist = scrollname; - numnames = &numscrollnames; - break; - case OC_POTION: - namelist = potionname; - numnames = &numpotnames; - break; - case OC_RING: - namelist = ringname; - numnames = &numringnames; - break; - case OC_WAND: - namelist = wandname; - numnames = &numwandnames; - break; - default: - dblog("ERROR! genhiddenname for unknown class %d\n",id); - exit(1); + for (hn = firsthiddenname ; hn ; hn = hn->next) { + if (hn->obclass == id) { + if (!hn->used) { + // found one + hn->used = B_TRUE; + return hn->text; + } + } } - assert((*numnames != 0)); - sel = rnd(0,*numnames-1); - strcpy(temp, namelist[sel]); - name = strdup(temp); - // remove this name from the candidate list - for (i = sel; i < (*numnames-1); i++) { - namelist[i] = namelist[i+1]; - } - (*numnames)--; - - return name; + assert(1 == 0); + return NULL; } // returns -1 if object doesn't have the flag @@ -2103,6 +2089,8 @@ char *getdamname(enum DAMTYPE damtype) { case DT_MAGIC: return "magical"; case DT_TOUCH: return "touch"; case DT_UNARMED: return "unarmed"; + case DT_LIGHT: return "light"; + case DT_CRUSH: return "crushing"; default: return "unknown"; } return "unknown"; @@ -2132,6 +2120,8 @@ char *getdamnamenoun(enum DAMTYPE damtype) { case DT_MAGIC: return "magical damage"; case DT_TOUCH: return "touch effects"; case DT_UNARMED: return "unarmed damage"; + case DT_LIGHT: return "light damage"; + case DT_CRUSH: return "crushing damage"; default: return "unknown"; } return "unkmown"; @@ -2463,6 +2453,7 @@ char *real_getobname(object_t *o, char *buf, int count, int wantpremods, int wan char buf2[BUFLEN]; int shopitem = B_FALSE; flag_t *f; + brand_t *br; obmod_t *om; int hasunknownmod = B_FALSE; @@ -2606,11 +2597,17 @@ char *real_getobname(object_t *o, char *buf, int count, int wantpremods, int wan // include mods (ie. a flaming sword) if (wantpremods) { - if (hasflag(o->flags, F_ONFIRE)) { - strcat(buf, "flaming "); - } - if (hasflag(o->flags, F_HEADLESS)) { - strcat(buf, "headless "); + for (om = firstobmod ; om; om = om->next) { + flag_t *omf; + int found = B_FALSE; + for (omf = om->flags->first ; omf ; omf = omf->next){ + if (hasflag(o->flags, omf->id)) { + found = B_TRUE; + } + } + if (found) { + strcat(buf, om->prefix); + } } } @@ -2642,14 +2639,14 @@ char *real_getobname(object_t *o, char *buf, int count, int wantpremods, int wan free(pluralname); // include mods if identified - ie. xxx of pyromania - for (om = firstobmod; om; om = om->next) { - if (hasflagval(o->flags, F_HASOBMOD, om->id, NA, NA, NULL)) { - flag_t *omf; + for (br = firstbrand; br; br = br->next) { + if (hasflagval(o->flags, F_HASBRAND, br->id, NA, NA, NULL)) { + flag_t *brf; int ok = B_TRUE; - // are all of the obmod flags known? - for (omf = om->flags->first ; omf ; omf = omf->next) { + // are all of the brand flags known? + for (brf = br->flags->first ; brf ; brf = brf->next) { for (f = o->flags->first; f ; f = f->next) { - if ((f->id == omf->id) && (f->lifetime == FROMOBMOD)) { + if ((f->id == brf->id) && (f->lifetime == FROMBRAND)) { if (f->known || shopitem) { } else { ok = B_FALSE; @@ -2661,7 +2658,7 @@ char *real_getobname(object_t *o, char *buf, int count, int wantpremods, int wan } if (ok) { - strcat(buf, om->suffix); + strcat(buf, br->suffix); } } } @@ -2976,23 +2973,38 @@ char *real_getrandomob(map_t *map, char *buf, int cond, int cval, int forcedepth strcat(cursestr, buf2); } - // get random chance of having a postmod (1% per depth)... + // weapons/armour have random chance of various obmods + if ((ot->obclass->id == OC_WEAPON) || + (ot->obclass->id == OC_ARMOUR)) { + obmod_t *om; + // 1 in 6 of masterwork + if (rnd(1,6) == 1) { + om = findobmod(OM_MASTERWORK); + strcat(cursestr, om->prefix); + } else if (rnd(1,3) == 1) { // 1 in 3 of shoddy + om = findobmod(OM_SHODDY); + strcat(cursestr, om->prefix); + } + + } + + // get random chance of having a brand (1% per depth)... // if so... strcpy(brandname, ""); if (rnd(1,100) <= depth) { - obmod_t *om, **poss; + brand_t *om, **poss; int numom; int nposs = 0; - // count number of obmods + // count number of brands numom = 0; - for (om = firstobmod ; om ; om = om->next) { + for (om = firstbrand ; om ; om = om->next) { numom++; } - poss = malloc(numom * sizeof(obmod_t *)); + poss = malloc(numom * sizeof(brand_t *)); - for (om = firstobmod ; om ; om = om->next) { - if (obmodappliesto(om, ot)) { + for (om = firstbrand ; om ; om = om->next) { + if (brandappliesto(om, ot)) { poss[nposs] = om; nposs++; } @@ -3427,59 +3439,169 @@ void initobjects(void) { //int i; objecttype_t *ot; - // generate counts for hidden names - numbooknames = countnames(bookname); - numscrollnames = countnames(scrollname); - numpotnames = countnames(potionname); - numringnames = countnames(ringname); - numwandnames = countnames(wandname); + // generate hidden names + addhiddenname(OC_BOOK, "ancient book"); + addhiddenname(OC_BOOK, "black book"); + addhiddenname(OC_BOOK, "blue book"); + addhiddenname(OC_BOOK, "clean book"); + addhiddenname(OC_BOOK, "creepy book"); + addhiddenname(OC_BOOK, "damp book"); + addhiddenname(OC_BOOK, "dog-eared book"); + addhiddenname(OC_BOOK, "dusty book"); + addhiddenname(OC_BOOK, "eerie book"); + addhiddenname(OC_BOOK, "fancy book"); + addhiddenname(OC_BOOK, "frosty book"); + addhiddenname(OC_BOOK, "furry book"); + addhiddenname(OC_BOOK, "glowing book"); + addhiddenname(OC_BOOK, "hot book"); + addhiddenname(OC_BOOK, "humming book"); + addhiddenname(OC_BOOK, "icy book"); + addhiddenname(OC_BOOK, "jiggling book"); + addhiddenname(OC_BOOK, "leatherbound book"); + addhiddenname(OC_BOOK, "luminous book"); + addhiddenname(OC_BOOK, "mouldy book"); + addhiddenname(OC_BOOK, "muddy book"); + addhiddenname(OC_BOOK, "night-black book"); + addhiddenname(OC_BOOK, "orange book"); + addhiddenname(OC_BOOK, "papyrus book"); + addhiddenname(OC_BOOK, "pink book"); + addhiddenname(OC_BOOK, "plain book"); + addhiddenname(OC_BOOK, "quivering book"); + addhiddenname(OC_BOOK, "rainbow-coloured book"); + addhiddenname(OC_BOOK, "red book"); + addhiddenname(OC_BOOK, "slimy book"); + addhiddenname(OC_BOOK, "small book"); + addhiddenname(OC_BOOK, "soggy book"); + addhiddenname(OC_BOOK, "thin book"); + addhiddenname(OC_BOOK, "thick book"); + addhiddenname(OC_BOOK, "tiny book"); + addhiddenname(OC_BOOK, "vibrating book"); + addhiddenname(OC_BOOK, "vine-covered book"); + addhiddenname(OC_BOOK, "warm book"); + addhiddenname(OC_BOOK, "worn book"); + addhiddenname(OC_BOOK, "wrinkled book"); + + addhiddenname(OC_SCROLL, "scroll titled ABRA CA DABRA"); + addhiddenname(OC_SCROLL, "scroll titled BARBAR"); + addhiddenname(OC_SCROLL, "scroll titled CRATOL JEM"); + addhiddenname(OC_SCROLL, "scroll titled DELENTH YIN"); + addhiddenname(OC_SCROLL, "scroll titled ETEE NOM"); + addhiddenname(OC_SCROLL, "scroll titled FIE JOOHM"); + addhiddenname(OC_SCROLL, "scroll titled GREE VII"); + addhiddenname(OC_SCROLL, "scroll titled HTEB IH"); + addhiddenname(OC_SCROLL, "scroll titled HOCUS POCUS"); + addhiddenname(OC_SCROLL, "scroll titled ILU-MA ZEE"); + addhiddenname(OC_SCROLL, "scroll titled JUNIPO CHECK"); + addhiddenname(OC_SCROLL, "scroll titled KARELS"); + addhiddenname(OC_SCROLL, "scroll titled LUMLEE GWON"); + addhiddenname(OC_SCROLL, "scroll titled MARIGON"); + addhiddenname(OC_SCROLL, "scroll titled MAXIMOR BLATHUS"); + addhiddenname(OC_SCROLL, "scroll titled NORTH"); + addhiddenname(OC_SCROLL, "scroll titled REZZ KINETO"); + addhiddenname(OC_SCROLL, "scroll titled SHAZZARIO"); + addhiddenname(OC_SCROLL, "scroll titled THERIUM LARGOS"); + addhiddenname(OC_SCROLL, "scroll titled VOLTR YI MEN"); + addhiddenname(OC_SCROLL, "scroll titled ZAREL NOR"); + + addhiddenname(OC_POTION, "aqua potion"); + addhiddenname(OC_POTION, "azure potion"); + addhiddenname(OC_POTION, "blue potion"); + addhiddenname(OC_POTION, "brown potion"); + addhiddenname(OC_POTION, "clear potion"); + addhiddenname(OC_POTION, "cyan potion"); + addhiddenname(OC_POTION, "dark potion"); + addhiddenname(OC_POTION, "effervescent potion"); + addhiddenname(OC_POTION, "fizzy potion"); + addhiddenname(OC_POTION, "fuming potion"); + addhiddenname(OC_POTION, "green potion"); + addhiddenname(OC_POTION, "indigo potion"); + addhiddenname(OC_POTION, "luminous potion"); // should produce light + addhiddenname(OC_POTION, "magenta potion"); + addhiddenname(OC_POTION, "orange potion"); + addhiddenname(OC_POTION, "red potion"); + addhiddenname(OC_POTION, "violet potion"); + addhiddenname(OC_POTION, "yellow potion"); + // other descriptions + addhiddenname(OC_POTION, "bubbling potion"); + addhiddenname(OC_POTION, "fizzy potion"); + addhiddenname(OC_POTION, "gluggy potion"); + addhiddenname(OC_POTION, "steaming potion"); + + addhiddenname(OC_WAND, "amethyst wand"); + addhiddenname(OC_WAND, "brass wand"); + addhiddenname(OC_WAND, "diamond wand"); + addhiddenname(OC_WAND, "emerald wand"); + addhiddenname(OC_WAND, "flourescent wand"); + addhiddenname(OC_WAND, "gold wand"); + addhiddenname(OC_WAND, "iridium wand"); + addhiddenname(OC_WAND, "luminous wand"); + addhiddenname(OC_WAND, "ruby wand"); + addhiddenname(OC_WAND, "zinc wand"); + addhiddenname(OC_WAND, "sapphire wand"); + addhiddenname(OC_WAND, "wooden wand"); + + // gems + addhiddenname(OC_RING, "ruby ring"); + addhiddenname(OC_RING, "diamond ring"); + addhiddenname(OC_RING, "emerald ring"); + addhiddenname(OC_RING, "silver ring"); + addhiddenname(OC_RING, "gold ring"); + + // object modifiers - flags can be either known or not, depending on if it's obvious + addobmod(OM_FLAMING,"flaming"); + addflag_real(lastobmod->flags, F_ONFIRE, B_TRUE, NA, NA, NULL, PERMENANT, B_KNOWN, -1); + addobmod(OM_HEADLESS,"headless"); + addflag_real(lastobmod->flags, F_HEADLESS, B_TRUE, NA, NA, NULL, PERMENANT, B_KNOWN, -1); + addobmod(OM_MASTERWORK,"masterwork"); + addflag_real(lastobmod->flags, F_MASTERWORK, B_TRUE, NA, NA, NULL, PERMENANT, B_KNOWN, -1); + addobmod(OM_SHODDY,"shoddy"); + addflag_real(lastobmod->flags, F_SHODDY, B_TRUE, NA, NA, NULL, PERMENANT, B_KNOWN, -1); + + // brands modifiers - flags should be UNKNOWN! + addbrand(BR_BALANCE, "of balance", BP_WEAPON); + addflag_real(lastbrand->flags, F_BALANCE, B_TRUE, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_PYROMANIA, "of pyromania", BP_WEAPON); + addflag_real(lastbrand->flags, F_FLAMESTRIKE, B_TRUE, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_REVENGE, "of revenge", BP_WEAPON); + addflag_real(lastbrand->flags, F_REVENGE, B_TRUE, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_SHARPNESS, "of sharpness", BP_WEAPON); + addflag_real(lastbrand->flags, F_ARMOURPIERCE, B_TRUE, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); + + addbrand(BR_LEVITATION, "of levitation", BP_FEET); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_LEVITATING, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); - // object modifiers - flags should be UNKNOWN! - addobmod(OM_BALANCE, "of balance", BP_WEAPON); - addflag_real(lastobmod->flags, F_BALANCE, B_TRUE, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_PYROMANIA, "of pyromania", BP_WEAPON); - addflag_real(lastobmod->flags, F_FLAMESTRIKE, B_TRUE, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_REVENGE, "of revenge", BP_WEAPON); - addflag_real(lastobmod->flags, F_REVENGE, B_TRUE, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_SHARPNESS, "of sharpness", BP_WEAPON); - addflag_real(lastobmod->flags, F_ARMOURPIERCE, B_TRUE, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); - - addobmod(OM_LEVITATION, "of levitation", BP_FEET); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_LEVITATING, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); - - - addobmod(OM_SWIFTNESS, "of swiftness", BP_FEET); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_FASTMOVE, 5, NA, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_SLOTH, "of sloth", BP_FEET); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_SLOWMOVE, 5, NA, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_STRENGTH, "of strength", BP_HANDS); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_ATTRMOD, A_STR, 3, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_WEAKNESS, "of weakness", BP_HANDS); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_ATTRMOD, A_STR, -3, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_DEXTERITY, "of dexterity", BP_HANDS); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_ATTRMOD, A_DEX, 3, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_IMPACT, "of impact", BP_WEAPON); // TODO: make thisonly go ont obashing weapons - addflag_real(lastobmod->flags, F_HEAVYBLOW, B_TRUE, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_INTELLIGENCE, "of intelligence", BP_HEAD); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_ATTRMOD, A_IQ, 3, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_KNOWLEDGE, "of knowledge", BP_HEAD); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_DETECTAURAS, B_TRUE, NA, NULL, PERMENANT, B_UNKNOWN, -1); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_DETECTMAGIC, B_TRUE, NA, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_TELEPATHY, "of telepathy", BP_HEAD); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_DETECTLIFE, 5, NA, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_TELEKINESIS, "of telekinesis", BP_HEAD); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_CANWILL, OT_S_TELEKINESIS, NA, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_GIANTSTRENGTH, "of giant strength", BP_WAIST); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_ATTRSET, A_STR, 18, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_FEEBLENESS, "of feebleness", BP_WAIST); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_ATTRSET, A_STR, 3, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_FLIGHT, "of flight", BP_WAIST); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_FLYING, B_TRUE, NA, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_SPEED, "of speed", BP_WAIST); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_FASTACT, 5, NA, NULL, PERMENANT, B_UNKNOWN, -1); - addobmod(OM_MAGRESIST, "of magic resistance", BP_SHOULDERS); - addflag_real(lastobmod->flags, F_EQUIPCONFER, F_RESISTMAG, B_TRUE, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_SWIFTNESS, "of swiftness", BP_FEET); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_FASTMOVE, 5, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_SLOTH, "of sloth", BP_FEET); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_SLOWMOVE, 5, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_STRENGTH, "of strength", BP_HANDS); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_ATTRMOD, A_STR, 3, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_WEAKNESS, "of weakness", BP_HANDS); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_ATTRMOD, A_STR, -3, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_DEXTERITY, "of dexterity", BP_HANDS); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_ATTRMOD, A_DEX, 3, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_IMPACT, "of impact", BP_WEAPON); // TODO: make thisonly go ont obashing weapons + addflag_real(lastbrand->flags, F_HEAVYBLOW, B_TRUE, NA, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_INTELLIGENCE, "of intelligence", BP_HEAD); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_ATTRMOD, A_IQ, 3, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_KNOWLEDGE, "of knowledge", BP_HEAD); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_DETECTAURAS, B_TRUE, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_DETECTMAGIC, B_TRUE, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_TELEPATHY, "of telepathy", BP_HEAD); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_DETECTLIFE, 5, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_TELEKINESIS, "of telekinesis", BP_HEAD); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_CANWILL, OT_S_TELEKINESIS, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_GIANTSTRENGTH, "of giant strength", BP_WAIST); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_ATTRSET, A_STR, 18, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_FEEBLENESS, "of feebleness", BP_WAIST); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_ATTRSET, A_STR, 3, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_FLIGHT, "of flight", BP_WAIST); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_FLYING, B_TRUE, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_SPEED, "of speed", BP_WAIST); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_FASTACT, 5, NA, NULL, PERMENANT, B_UNKNOWN, -1); + addbrand(BR_MAGRESIST, "of magic resistance", BP_SHOULDERS); + addflag_real(lastbrand->flags, F_EQUIPCONFER, F_RESISTMAG, B_TRUE, NA, NULL, PERMENANT, B_UNKNOWN, -1); // materials addmaterial(MT_NOTHING, "nothing", 0); @@ -4196,6 +4318,9 @@ void initobjects(void) { addot(OT_A_GRAB, "grab", "You can grab hold of nearby enemies to prevent their escape.", MT_NOTHING, 0, OC_ABILITY); addflag(lastot->flags, F_SPELLSCHOOL, SS_ABILITY, NA, NA, NULL); addflag(lastot->flags, F_AICASTATADJVICTIM, NA, NA, NA, NULL); + addot(OT_A_CRUSH, "crush", "You can crush enemies after grabbing them.", MT_NOTHING, 0, OC_ABILITY); + addflag(lastot->flags, F_SPELLSCHOOL, SS_ABILITY, NA, NA, NULL); + addflag(lastot->flags, F_AICASTATADJVICTIM, NA, NA, NA, NULL); addot(OT_A_JUMP, "jump", "You can leap large distances.", MT_NOTHING, 0, OC_ABILITY); addflag(lastot->flags, F_SPELLSCHOOL, SS_ABILITY, NA, NA, NULL); addot(OT_A_SPRINT, "sprint", "You can run at high speed over short distances.", MT_NOTHING, 0, OC_ABILITY); @@ -4208,6 +4333,8 @@ void initobjects(void) { addot(OT_A_HEAVYBLOW, "heavy blow", "Mighty blow which knocks enemies backwards.", MT_NOTHING, 0, OC_ABILITY); addflag(lastot->flags, F_SPELLSCHOOL, SS_ABILITY, NA, NA, NULL); addflag(lastot->flags, F_AICASTATADJVICTIM, NA, NA, NA, NULL); + addot(OT_A_INSPECT, "inspect", "Try to identify an unknown object from your pack.", MT_NOTHING, 0, OC_ABILITY); + addflag(lastot->flags, F_SPELLSCHOOL, SS_ABILITY, NA, NA, NULL); // spellbooks @@ -4424,7 +4551,7 @@ void initobjects(void) { addflag(lastot->flags, F_STACKABLE, B_TRUE, NA, NA, NULL); addflag(lastot->flags, F_NOBLESS, B_TRUE, NA, NA, NULL); addflag(lastot->flags, F_RARITY, H_DUNGEON, 70, NA, NULL); - addflag(lastot->flags, F_PICKLOCKS, 5, NA, NA, NULL); + addflag(lastot->flags, F_PICKLOCKS, 2, NA, NA, NULL); addflag(lastot->flags, F_OPERABLE, B_TRUE, NA, NA, NULL); addot(OT_FLASHBANG, "flashbang", "A stun grenade which temporarily blinds all within sight.", MT_METAL, 1, OC_TECH); @@ -4505,14 +4632,14 @@ void initobjects(void) { addflag(lastot->flags, F_STACKABLE, B_TRUE, NA, NA, NULL); addflag(lastot->flags, F_NOBLESS, B_TRUE, NA, NA, NULL); addflag(lastot->flags, F_RARITY, H_DUNGEON, 75, NA, NULL); - addflag(lastot->flags, F_PICKLOCKS, 50, B_DIEONFAIL, NA, NULL); + addflag(lastot->flags, F_PICKLOCKS, 10, B_DIEONFAIL, NA, NULL); addflag(lastot->flags, F_OPERABLE, B_TRUE, NA, NA, NULL); addot(OT_PAPERCLIP, "paperclip", "A thin, looped wire for holding paper together.", MT_METAL, 0.01, OC_TECH); addflag(lastot->flags, F_STACKABLE, B_TRUE, NA, NA, NULL); addflag(lastot->flags, F_NOBLESS, B_TRUE, NA, NA, NULL); addflag(lastot->flags, F_RARITY, H_DUNGEON, 70, NA, NULL); - addflag(lastot->flags, F_PICKLOCKS, 25, B_DIEONFAIL, NA, NULL); + addflag(lastot->flags, F_PICKLOCKS, 4, B_DIEONFAIL, NA, NULL); addflag(lastot->flags, F_OPERABLE, B_TRUE, NA, NA, NULL); // can use as a (very bad) weapon too... addflag(lastot->flags, F_DAMTYPE, DT_PIERCE, NA, NA, NULL); @@ -5046,12 +5173,16 @@ void initobjects(void) { addflag(lastot->flags, F_DAM, 1, 2, NA, NULL); addflag(lastot->flags, F_ACCURACY, 100, NA, NA, NULL); - addot(OT_TAIL, "tail", "tail object", MT_FLESH, 0, OC_WEAPON); addflag(lastot->flags, F_DAMTYPE, DT_BASH, NA, NA, NULL); addflag(lastot->flags, F_DAM, 1, 4, NA, NULL); addflag(lastot->flags, F_ACCURACY, 80, NA, NA, NULL); + addot(OT_TENTACLE, "tentacle", "tentacle object", MT_FLESH, 0, OC_WEAPON); + addflag(lastot->flags, F_DAMTYPE, DT_BASH, NA, NA, NULL); + addflag(lastot->flags, F_DAM, 2, 6, NA, NULL); + addflag(lastot->flags, F_ACCURACY, 100, NA, NA, NULL); + addot(OT_ZAPPER, "zapper", "zapper object", MT_NOTHING, 0, OC_WEAPON); addflag(lastot->flags, F_DAMTYPE, DT_ELECTRIC, NA, NA, NULL); addflag(lastot->flags, F_DAM, 1, 2, NA, NULL); @@ -5136,7 +5267,7 @@ void initobjects(void) { addflag(lastot->flags, F_MISSILE, B_TRUE, NA, NA, NULL); addflag(lastot->flags, F_DAMAGABLE, B_TRUE, NA, NA, NULL); addflag(lastot->flags, F_OBHP, 2, 2, NA, NULL); - addflag(lastot->flags, F_PICKLOCKS, 10, B_BLUNTONFAIL, NA, NULL); + addflag(lastot->flags, F_PICKLOCKS, 7, B_BLUNTONFAIL, NA, NULL); addot(OT_ORNDAGGER, "ornamental dagger", "This dagger is pretty, but not particularly effective.", MT_METAL, 1, OC_WEAPON); addflag(lastot->flags, F_RARITY, H_DUNGEON, 50, NA, NULL); addflag(lastot->flags, F_SHINY, B_TRUE, NA, NA, NULL); @@ -5144,7 +5275,7 @@ void initobjects(void) { addflag(lastot->flags, F_DAM, 1, 3, NA, NULL); addflag(lastot->flags, F_ACCURACY, 100, NA, NA, NULL); addflag(lastot->flags, F_MISSILE, B_TRUE, NA, NA, NULL); - addflag(lastot->flags, F_PICKLOCKS, 10, B_BLUNTONFAIL, NA, NULL); + addflag(lastot->flags, F_PICKLOCKS, 7, B_BLUNTONFAIL, NA, NULL); addot(OT_SHORTSWORD, "short sword", "A short blade for fighting. Better for stabbing.", MT_METAL, 2.5, OC_WEAPON); addflag(lastot->flags, F_RARITY, H_DUNGEON, 90, NA, NULL); addflag(lastot->flags, F_DAMTYPE, DT_PIERCE, NA, NA, NULL); @@ -5175,7 +5306,7 @@ void initobjects(void) { addflag(lastot->flags, F_DAMAGABLE, B_TRUE, NA, NA, NULL); addflag(lastot->flags, F_OBHP, 5, 5, NA, NULL); addflag(lastot->flags, F_MISSILE, B_TRUE, NA, NA, NULL); - addflag(lastot->flags, F_PICKLOCKS, 10, B_BLUNTONFAIL, NA, NULL); + addflag(lastot->flags, F_PICKLOCKS, 7, B_BLUNTONFAIL, NA, NULL); // chopping weapons addot(OT_AXE, "axe", "A short pole with a heavy, wedge-shaped blade for chopping.", MT_METAL, 4, OC_WEAPON); @@ -5213,7 +5344,7 @@ void initobjects(void) { addflag(lastot->flags, F_DAM, 1, 3, NA, NULL); addflag(lastot->flags, F_ACCURACY, 100, NA, NA, NULL); addflag(lastot->flags, F_MISSILE, B_TRUE, NA, NA, NULL); - addflag(lastot->flags, F_PICKLOCKS, 10, B_BLUNTONFAIL, NA, NULL); + addflag(lastot->flags, F_PICKLOCKS, 7, B_BLUNTONFAIL, NA, NULL); addflag(lastot->flags, F_DAMAGABLE, B_TRUE, NA, NA, NULL); addflag(lastot->flags, F_OBHP, 5, 5, NA, NULL); addot(OT_STEAKKNIFE, "steak knife", "A common kitchen knife.", MT_METAL, 0.2, OC_WEAPON); @@ -5467,10 +5598,10 @@ int isbetterwepthan(object_t *a, object_t *b) { } // modify based on extra props - if (hasflag(a->flags, F_HASOBMOD)) { + if (hasflag(a->flags, F_HASBRAND)) { dama *= 3; } - if (hasflag(b->flags, F_HASOBMOD)) { + if (hasflag(b->flags, F_HASBRAND)) { damb *= 3; } @@ -6289,7 +6420,7 @@ enum DAMTYPE oblastdamtype(object_t *o) { return DT_NONE; } -int obmodappliesto(obmod_t *om, objecttype_t *ot) { +int brandappliesto(brand_t *om, objecttype_t *ot) { if (om->bp == BP_WEAPON) { if (ot->obclass->id == OC_WEAPON) { return B_TRUE; @@ -6303,6 +6434,46 @@ int obmodappliesto(obmod_t *om, objecttype_t *ot) { return B_FALSE; } + + +int obmatchescondition(object_t *o, long opts) { + int ok = B_TRUE; + if ((opts & AO_ONLYEQUIPPED) && !hasflag(o->flags, F_EQUIPPED)) { + ok = B_FALSE; + } + if ((opts & AO_EQUIPPEDARMOUR)) { + flag_t *ff; + ff = hasflag(o->flags, F_EQUIPPED); + if (!ff) { + ok = B_FALSE; + } else if (ff->val[0] == BP_WEAPON) { + ok = B_FALSE; + } + } + if ((opts & AO_EDIBLE) && !isedible(o)) ok = B_FALSE; + if ((opts & AO_READABLE) && !isreadable(o)) ok = B_FALSE; + if ((opts & AO_ARMOUR) && (o->type->obclass->id != OC_ARMOUR)) ok = B_FALSE; + if ((opts & AO_WEARABLE) && !iswearable(o)) { + ok = B_FALSE; + } + if ((opts & AO_WEILDABLE) && !isweapon(o)) { + ok = B_FALSE; + } + if ((opts & AO_OPERABLE) && !isoperable(o)) { + ok = B_FALSE; + } + if ((opts & AO_POURABLE) && !ispourable(o)) { + ok = B_FALSE; + } + if ((opts & AO_NOTIDENTIFIED) && isidentified(o)) { + ok = B_FALSE; + } + if ((opts & AO_NOTKNOWN) && isknown(o)) { + ok = B_FALSE; + } + return ok; +} + flag_t *obproduceslight(object_t *o) { flag_t *f; f = hasflag(o->flags, F_PRODUCESLIGHT); @@ -6479,9 +6650,22 @@ int operate(lifeform_t *lf, object_t *o, cell_t *where) { getlfname(lf, lfname); msg("%s zaps %s.",lfname,obname); } + + f = hasflag(o->flags, F_LINKSPELL); if (f) { - dospelleffects(lf, f->val[0], where ? where->lf : NULL, NULL, where, o->blessed, &willid); + int isblessed; + isblessed = o->blessed; + + // certain wands always used the blessed version of spells + switch (o->type->id) { + case OT_WAND_LIGHT: + isblessed = B_TRUE; + break; + default: + break; + } + dospelleffects(lf, f->val[0], where ? where->lf : NULL, NULL, where, isblessed, &willid); // special wands } else if (o->type->id == OT_WAND_WONDER) { // random effect @@ -7948,6 +8132,8 @@ int takedamage(object_t *o, unsigned int howmuch, int damtype) { int fireat(lifeform_t *thrower, object_t *o, cell_t *where, int speed, object_t *firearm) { char throwername[BUFLEN]; char throwernamea[BUFLEN]; + char realthrowername[BUFLEN]; + char realthrowernamea[BUFLEN]; char obname[BUFLEN]; char targetname[BUFLEN]; char buf[BUFLEN]; @@ -7984,6 +8170,7 @@ int fireat(lifeform_t *thrower, object_t *o, cell_t *where, int speed, object_t if (thrower) { getlfname(thrower, throwername); + real_getlfname(thrower, realthrowername, B_FALSE); } else { strcpy(obname, "something"); } @@ -7998,9 +8185,18 @@ int fireat(lifeform_t *thrower, object_t *o, cell_t *where, int speed, object_t strcpy(throwernamea, "a "); } strcat(throwernamea, noprefix(throwername)); + + + if (isvowel(*(noprefix(realthrowername)))) { + strcpy(realthrowernamea, "an "); + } else { + strcpy(realthrowernamea, "a "); + } + strcat(realthrowernamea, noprefix(realthrowername)); } } else { strcat(throwernamea, "something"); + strcat(realthrowernamea, "something"); } srcloc = getoblocation(o); @@ -8199,7 +8395,7 @@ int fireat(lifeform_t *thrower, object_t *o, cell_t *where, int speed, object_t youhear(where, "shattering glass."); } } - sprintf(damstring, "%s (%s by %s)",obname,throwverbpast, throwernamea); + sprintf(damstring, "%s (%s by %s)",obname,throwverbpast, realthrowernamea); reduceamt = getarmourdamreduction(target, o, dam, DT_PROJECTILE); @@ -8220,7 +8416,7 @@ int fireat(lifeform_t *thrower, object_t *o, cell_t *where, int speed, object_t if (seen) { msg("%s %s showered in glass shards!", targetname, isplayer(target) ? "are" : "is"); } - sprintf(damstring, "%s (%s by %s)",obname,throwverbpast, throwernamea); + sprintf(damstring, "%s (%s by %s)",obname,throwverbpast, realthrowernamea); losehp(target, shatterdam, DT_SLASH, thrower, damstring); } } else { @@ -8581,9 +8777,10 @@ void timeeffectsob(object_t *o) { // turnoff turnoff(NULL, o); obaction(o, "goes out"); + needredraw = B_TRUE; return; } else if (f2->val[0] <= 50) { - if (rnd(1,3)) { + if (rnd(1,6) == 1) { obaction(o, "flickers"); } } diff --git a/objects.h b/objects.h index faf4e19..0de8669 100644 --- a/objects.h +++ b/objects.h @@ -2,14 +2,16 @@ #define __OBJECTS_H #include "defs.h" +brand_t *addbrand(enum BRAND id, char *suffix, enum BODYPART bp); object_t *addemptyob(obpile_t *where, object_t *o); +hiddenname_t *addhiddenname(enum OBCLASS obclass, char *text); knowledge_t *addknowledge(enum OBCLASS id, char *hiddenname, int known); material_t *addmaterial(enum MATERIAL id, char *name, float weightrating); objectclass_t *addoc(enum OBCLASS id, char *name, char *desc, char glyph); object_t *addob(obpile_t *where, char *name); object_t *addobject(obpile_t *where, char *name, int canstack); int addobburst(cell_t *where, int range, int dirtype, char *name); -obmod_t *addobmod(enum OBMOD id, char *suffix, enum BODYPART bp); +obmod_t *addobmod(enum OBMOD id, char *prefix); obpile_t *addobpile(lifeform_t *owner, cell_t *where); objecttype_t *addot(int id, char *name, char *description, int material, float weight, int obclassid); void adjustdammaterial(unsigned int *dam, enum DAMTYPE damtype, enum MATERIAL mat); @@ -33,6 +35,7 @@ material_t *findmaterial(int id); objectclass_t *findoc(int id); object_t *findobbyid(obpile_t *op, long oid); object_t *findobl(obpile_t *op, char let); // find object by letter +brand_t *findbrand(enum BRAND id); obmod_t *findobmod(enum OBMOD id); objecttype_t *findot(enum OBTYPE id); objecttype_t *findotn(char *name); // find objecttype by name @@ -141,7 +144,8 @@ object_t *obexists(enum OBTYPE obid); void obdie(object_t *o); int obfits(object_t *o, obpile_t *op); enum DAMTYPE oblastdamtype(object_t *o); -int obmodappliesto(obmod_t *om, objecttype_t *ot); +int brandappliesto(brand_t *om, objecttype_t *ot); +int obmatchescondition(object_t *o, long opts); flag_t *obproduceslight(object_t *o); int obpropsmatch(object_t *a, object_t *b); int obotpropsmatch(object_t *a, objecttype_t *b); diff --git a/save.c b/save.c index 969b4e2..8f16673 100644 --- a/save.c +++ b/save.c @@ -315,8 +315,8 @@ map_t *loadmap(char *basefile) { */ // cell info - fscanf(f, "%d,%d,%d,%d,%d\n", - &c->roomid, &celltypeid, &c->known, &c->visited, &c->lit); + fscanf(f, "%d,%d,%d,%d,%d,%d,%d\n", + &c->roomid, &celltypeid, &c->known, &c->visited, &c->lit, &c->origlit, &c->littimer); ct = findcelltype(celltypeid); @@ -725,8 +725,8 @@ int savemap(map_t *m) { cell_t *c; c = getcellat(m, x, y); // cell info - fprintf(f, "%d,%d,%d,%d,%d\n", - c->roomid, c->type->id, c->known, c->visited,c->lit); + fprintf(f, "%d,%d,%d,%d,%d,%d,%d\n", + c->roomid, c->type->id, c->known, c->visited,c->lit,c->origlit,c->littimer); // cell objects for (o = c->obpile->first ; o ; o = o->next) { fprintf(f, "ob:%ld\n",o->id); diff --git a/spell.c b/spell.c index 4195f91..79b48b0 100644 --- a/spell.c +++ b/spell.c @@ -32,6 +32,7 @@ int abilityeffects(lifeform_t *user, enum OBTYPE abilid, cell_t *targcell, lifef if (abilid == OT_A_GRAB) { char dirch; flag_t *f; + char targetname[BUFLEN]; f = lfhasflag(user, F_GRABBING); if (f) { @@ -68,8 +69,66 @@ int abilityeffects(lifeform_t *user, enum OBTYPE abilid, cell_t *targcell, lifef return B_TRUE; } - addflag(user->flags, F_GRABBING, target->id, NA, NA, NULL); - addflag(target->flags, F_GRABBEDBY, user->id, NA, NA, NULL); + getlfname(target, targetname); + + // victim gets a skilcheck to avoid being grabbed + if (skillcheck(target, SC_DODGE, getattr(user, A_DEX)+11, 0)) { + msg("%s evade%s %s%s grasp.", targetname, isplayer(target) ? "" : "s", + username, getpossessive(username)); + } else { + addflag(user->flags, F_GRABBING, target->id, NA, NA, NULL); + addflag(target->flags, F_GRABBEDBY, user->id, NA, NA, NULL); + } + taketime(user, getactspeed(user)); + } else if (abilid == OT_A_CRUSH) { + flag_t *f; + lifeform_t *grabee; + char gbname[BUFLEN]; + int dam = 0; + + if (isimmobile(user)) { + if (isplayer(user)) msg("You cannot move!"); + return B_TRUE; + } + + f = lfhasflag(user, F_GRABBING); + if (!f) { + if (isplayer(user)) msg("You need to hold someone before using this ability."); + return B_TRUE; + } + grabee = findlf(NULL, f->val[0]); + + assert(grabee); + getlfname(grabee, gbname); + + // announce + if (haslos(player, grabee->cell)) { + msg("%s squeeze%s %s tightly!", username, isplayer(user) ? "" : "s", gbname); + } + + // victim gets a skilcheck to avoid damage... + if (skillcheckvs(grabee, SC_STR, 0, user, SC_STR, 1)) { + if (haslos(player, grabee->cell)) { + // broke free + killflagsofid(grabee->flags, F_GRABBEDBY); + killflagsofid(user->flags, F_GRABBING); + } + } else { + char killername[BUFLEN]; + int str; + // determine damage baesd on crusher's strength + str = getattr(user, A_STR); + dam = modifybystat((str/2), user, A_STR); + + // announce + if (haslos(player, grabee->cell)) { + msg("%s %s being crushed!", gbname, isplayer(grabee) ? "are" : "is"); + } + + real_getlfname(user,killername, B_FALSE); + losehp(grabee, dam, DT_CRUSH, user, killername); + } + taketime(user, getactspeed(user)); } else if (abilid == OT_A_JUMP) { lifeform_t *victim = NULL; char victimname[BUFLEN]; @@ -196,10 +255,17 @@ int abilityeffects(lifeform_t *user, enum OBTYPE abilid, cell_t *targcell, lifef } return B_TRUE; } - // TODO: calculate time based on: - // constitution (or max hp?) - // running speed howlong = 5; + // modify for constitution + howlong = modifybystat(howlong, user, A_CON); + + if (howlong <= 1) { + if (isplayer(user)) { + msg("You are too unfit to sprint."); + } + return B_TRUE; + } + addtempflag(user->flags, F_SPRINTING, B_TRUE, NA, NA, NULL, howlong); } else if (abilid == OT_A_DEBUG) { cell_t *where; @@ -289,6 +355,71 @@ int abilityeffects(lifeform_t *user, enum OBTYPE abilid, cell_t *targcell, lifef f = addflag(wep->flags, F_HEAVYBLOW, B_TRUE, NA, NA, NULL); attackcell(user, targcell); killflag(f); + } else if (abilid == OT_A_INSPECT) { + object_t *o; + int difficulty; + int rarity; + int mod; + enum SKILLLEVEL slev; + flag_t *f; + + // only players can do this + if (!isplayer(user)) { + return B_TRUE; + } + + + // blind? + if (isblind(user)) { + msg("You must be able to see before you can inspect something."); + return B_TRUE; + } + + // ask what to inspect + o = askobject(user->pack, "Inspect which object", NULL, AO_NOTKNOWN); + if (!o) { + msg("Cancelled"); + return B_TRUE; + } + + if (isknown(o)) { + msg("You already know what that is!"); + return B_TRUE; + } + + // failed this already? + if (lfhasflagval(user, F_FAILEDINSPECT, o->type->id, NA, NA, NULL)) { + msg("You won't be able to recognise this until you are more experienced."); + return B_TRUE; + } + // skillcheck... + f = hasflag(o->flags, F_RARITY); + if (f) { + rarity = f->val[1]; + } else { + rarity = 0; + } + difficulty = 25 + ((100 - rarity) / 5); + slev = getskill(user, SK_RESEARCH); + switch (slev) { + case PR_INEPT: + mod = -5; + break; + default: + mod = slev*4; + break; + } + if (skillcheck(user, SC_IQ, difficulty, mod)) { + char obname[BUFLEN]; + // passed! + makeknown(o->type->id); + getobname(o, obname, o->amt); + msgnocap("This seems to be %s!", obname); + } else { + msg("You are not yet sure what this is."); + addflag(user->flags, F_FAILEDINSPECT, o->type->id, NA, NA, NULL); + } + taketime(user, getactspeed(user)); } // expire ability @@ -706,12 +837,19 @@ int dospelleffects(lifeform_t *caster, enum OBTYPE spellid, lifeform_t *target, return B_TRUE; } } else if (spellid == OT_S_DARKNESS) { + if (!targcell) targcell = caster->cell; // centre on the caster - if (isplayer(caster) || haslos(player, caster->cell)) { + if (haslos(player, targcell)) { msg("A cloud of darkness descends!"); if (seenbyplayer) *seenbyplayer = B_TRUE; } - makelitradius(caster->cell, 10, L_DARK); + if (blessed) { + // permenant darkness + makelitradius(targcell, 10, L_PERMDARK, -1); + } else { + // temporary darkness + makelitradius(targcell, 10, L_PERMDARK, rnd(5,10) ); + } } else if (spellid == OT_S_DETECTAURA) { if (isplayer(caster)) { object_t *o; @@ -1941,12 +2079,21 @@ int dospelleffects(lifeform_t *caster, enum OBTYPE spellid, lifeform_t *target, } } else if (spellid == OT_S_LIGHT) { lifeform_t *l; + + if (!targcell) targcell = caster->cell; + // centre light on the caster - if (isplayer(caster) || haslos(player, caster->cell)) { + if (haslos(player, targcell)) { msg("The area is lit by a magical light!"); if (seenbyplayer) *seenbyplayer = B_TRUE; } - makelitradius(caster->cell, 10, L_PERM); + if (blessed) { + // permenant light + makelitradius(targcell, 10, L_PERMLIGHT, -1); + } else { + // temporary light + makelitradius(targcell, 10, L_PERMLIGHT, rnd(5,10) ); + } // blind anyone with nightvis who sees it // (player last) @@ -1975,6 +2122,11 @@ int dospelleffects(lifeform_t *caster, enum OBTYPE spellid, lifeform_t *target, } } + // anyone there glows + if ((targcell != caster->cell) && targcell->lf) { + addtempflag(targcell->lf->flags, F_PRODUCESLIGHT, B_TRUE, NA, NA, NULL, rnd(10,20)); + } + } else if (spellid == OT_S_GRAVBOOST) { // ask for target if (!target) { @@ -2413,12 +2565,12 @@ int dospelleffects(lifeform_t *caster, enum OBTYPE spellid, lifeform_t *target, } } else { // couldn't make it appear - msg("The air in front of %s seems to ripple for a while.", lfname); + msg("The air in front of %s seems to ripple for a moment.", lfname); } } } else { // couldn't make it appear - ob doesn't exist - msg("The air in front of %s seems to ripple for a moment.", lfname); + msg("The air in front of %s seems to ripple for a while.", lfname); } } else { // monsters can't wish diff --git a/text.c b/text.c index e00609f..bcf0cf6 100644 --- a/text.c +++ b/text.c @@ -342,6 +342,41 @@ int strpixmatch(char *haystack, char *needle) { return matched; } +int texttodice(char *text, int *ndice, int *nsides, int *bonus) { + char *dummy; + char *localtext; + char *p; + localtext = strdup(text); + // number of dice + p = strtok_r(localtext, "d", &dummy); + if (!p) { + return B_TRUE; + } + if (ndice) { + *ndice = atoi(p); + } + // sides on each die + p = strtok_r(NULL, "d", &dummy); + if (!p) { + return B_TRUE; + } + if (nsides) { + *nsides = atoi(p); + } + // bonus/plus + if (bonus) { + p = strtok_r(NULL, "+", &dummy); + if (p) { + *bonus = atoi(p); + } else { + *bonus = 0; + } + } + + free(localtext); + return B_FALSE; +} + char *you(lifeform_t *lf) { if (isplayer(lf)) { return "You"; diff --git a/text.h b/text.h index 7b0a4ab..c5b4ed5 100644 --- a/text.h +++ b/text.h @@ -15,6 +15,7 @@ void splittime(int *hours, int *mins, int *secs); char *strrep(char *text, char *oldtok, char *newtok, int *rv); char *dostrrep(char* in, char** out, char* oldtok, char* newtok, int *rv); int strpixmatch(char *haystack, char *needle); +int texttodice(char *text, int *ndice, int *nsides, int *bonus); char *you(lifeform_t *lf); char *you_l(lifeform_t *lf); char *your(lifeform_t *lf);