Are you plunging down three levels at a time?
If resting for hp works but resting for mana doesn't, I could steal Ironband's mana.
If resting for hp works but resting for mana doesn't, I could steal Ironband's mana.
[Halls of Mist 1.2.1 Character Dump] Name Jome Oore Level 16/16 CB Base RB EB Stat Sex Male Cur Exp 7563 STR: (-3) 8 +1 +0 9 Race Vargr Max Exp 7563 MEM: (+2) 16 +1 +0 17 Class Mage Cur Depth 15 WIS: (+0) 8 +1 +0 9 Title Illusionist Min Depth 15 DEX: (+1) 13 +1 +0 14 Deity None Gold 672 CON: (-1) 10 +1 +0 11 PRE: (+2) 12 +0 +0 12 Wounds Grace Infra 0 squares Hits 115 / 115 Spells 8 squares Mana 34 / 34 Lore 0 / 1 Burden 70.3/84 Fighting 9 (+1) Reserves 1 / 1 Armor [9,+6] Shooting 5 (+1) Blows 3/turn Throwing 7 (+1) Melee Damage 1d7 Magic Device 50% Shots 1/turn Saving Throw 50% Thrown Damage 1* Stealth Good You come from a litter of five. Your parents were Perception 45% both hunters. Your eyes are yellow, and your fur is Jumping 60% brown. Alchemy 68% Navigation 60% [Resists & Abilities] No Blind:.............. Telepathy:.............. Speed:.............. Free Actn:.............. See Invis:.............. Mana:.............. Hold Life:.............. Invisible:.............. Health:.............. Bravery:.............. Luck:.............. Spl. Dur:.............. No Dsease:.............. Stealth:.............. Spl. Dam:.............. No Stun:.............. Jumping:.............. Spl. Inf:.............. No Poison:.............. Percptn.:.............. Taint:.............. No Cut:.............. Infra-vsn:.............. Disrupt:.............. No Conf:.............. Ambush:.............. Drn Items:.............. Regen:.............. Blows:.............. Drn Exp:.............. Fthr Fall:.............. Range:.............. Teleport:.............. Light:.....*........ Mgt Throw:.............. Aggravate:.............. Acid :45% ...+........+. Dises:9% ............+. Nethr:8% ............+. Elec :43% ...+........+. Light:6% ............+. Chaos:6% ............+. Fire :36% .....+......+. Dark :6% ............+. Cold :42% .....+......+. Sound:3% ............+. Water:6% ............+. Shard:6% ............+. Poisn:9% ............+. Nexus:8% ............+. abcdefghijkl@* abcdefghijkl@* abcdefghijkl@* \} = ~ ()] ] \} = ~ ()] ] \} = ~ ()] ] [Character Equipment] a) a Vargr Quarterstaff (+0, 1d7) b) a Grippli Bow (+0, x4, 7) c) (nothing) d) a Ring of Resist Acid and Electricity e) (nothing) f) a Torch of Resist Fire and Cold <3352> g) (nothing) h) a Fur Cloak [2,+3] i) a Small Leather Shield [2,+0] j) a Metal Cap [2,+2] k) (nothing) l) a Pair of Spiked Leather Boots [3,+0]
/* * Hack -- Calculates the total number of points earned */ long total_points(void) { int p = (p_ptr->max_exp + (100 * p_ptr->max_depth)); if (adult_easy_mode) p /= 4; if (adult_nightmare_mode) p *= 3; /* Winners get a bonus for low minimum depth. */ float multiplier; if (p_ptr->total_winner) { multiplier = ((58-p_ptr->min_depth)*(58-p_ptr->min_depth)); } else multiplier = 100; /* A little hack to get around the integers. */ p = (p*multiplier)/100; return p; }
Comment