Difference between revisions of "Cursed spellbook"

From NetHackWiki
Jump to navigation Jump to search
(Added that player is stunned for <study time> turns in addition to random effect.)
Line 1: Line 1:
Generally, do ''not'' read a '''[[cursed]] [[spellbook]]'''. Reading a cursed spellbook has one of several random effects, defined by the <code>cursed_book</code> function in [[spell.c]]. These effects can also happen when you read an uncursed spellbook which is too difficult for you, but blessed spellbooks never cause these bad effects.
+
Generally, do ''not'' read a '''[[cursed]] [[spellbook]]'''. Reading a cursed spellbook has one of several random effects, defined by the <code>cursed_book</code> function in [[spell.c]]. These effects can also happen when you read an uncursed spellbook which is too difficult for you, but blessed spellbooks never cause these bad effects.
  
 
Sometimes, "You feel a '''wrenching sensation'''" and [[teleport]]s you. That is not so bad, but the other random effects are much worse. When you read a cursed spellbook, one of these happens at random:
 
Sometimes, "You feel a '''wrenching sensation'''" and [[teleport]]s you. That is not so bad, but the other random effects are much worse. When you read a cursed spellbook, one of these happens at random:
Line 13: Line 13:
  
 
The above list is numbered to match the minimum spellbook level needed to reach that effect. For example, a cursed spellbook of level 2 might teleport you, aggravate nearby monsters, or blind you, but it will not take away your gold.  The random curse will not happen, because there are no level 8 spellbooks.
 
The above list is numbered to match the minimum spellbook level needed to reach that effect. For example, a cursed spellbook of level 2 might teleport you, aggravate nearby monsters, or blind you, but it will not take away your gold.  The random curse will not happen, because there are no level 8 spellbooks.
 +
 +
In addition to the random effect chosen from above, you will be [[Hack.c#nomul|unable to act]] for the same number of turns as were needed to [attempt to] read the book. (Ref: [[Spell.c#line463]])
  
 
[[Category:Spellbooks]]
 
[[Category:Spellbooks]]

Revision as of 01:58, 24 June 2007

Generally, do not read a cursed spellbook. Reading a cursed spellbook has one of several random effects, defined by the cursed_book function in spell.c. These effects can also happen when you read an uncursed spellbook which is too difficult for you, but blessed spellbooks never cause these bad effects.

Sometimes, "You feel a wrenching sensation" and teleports you. That is not so bad, but the other random effects are much worse. When you read a cursed spellbook, one of these happens at random:

  1. "You feel a wrenching sensation" and are teleported.
  2. "You feel threatened." The effect is to aggravate monster around you.
  3. You become blind for 100 to 250 turns.
  4. You lose all of your (visible) gold.
  5. You become confused for 7 to 16 turns. If you are already confused, you remain confused for 7 to 16 additional turns.
  6. It is a contact-poisoned spellbook, and you are poisoned, losing up to 4 points of strength and 10 points of health. A contact-poisoned spellbook can also corrode your gloves; or rather it could, if your gloves are gauntlets of power.
  7. "As you read the book, it radiates explosive energy in your face!" (Replace face with whichever body part you have while polymorphed.) You will lose up to 25 hp, but if you have magic resistance then you will avoid harm.
  8. The spellbook randomly curses some items in your inventory.

The above list is numbered to match the minimum spellbook level needed to reach that effect. For example, a cursed spellbook of level 2 might teleport you, aggravate nearby monsters, or blind you, but it will not take away your gold. The random curse will not happen, because there are no level 8 spellbooks.

In addition to the random effect chosen from above, you will be unable to act for the same number of turns as were needed to [attempt to] read the book. (Ref: Spell.c#line463)