Difference between revisions of "The Mitre of Holiness"

From NetHackWiki
Jump to navigation Jump to search
m (properly fix reference)
(Updated references to 367 code with correct line numbers. Changed version category to 366. --~~~~)
Line 16: Line 16:
  
 
==Effects==
 
==Effects==
When carried, the Mitre of Holiness confers [[fire resistance]]. When worn, it also provides the normal effects of a helm of brilliance, as well as extrinsic [[protection]] - augmenting your [[magic cancellation]] as a [[ring of protection]], but not cumulative with one. If the wearer is a Priest, they also take half physical damage from all [[undead]] monsters and major [[demon]]s - this property does not stack with other [[half physical damage]] sources.{{refsrc|src/mhitu.c|1658|nethack=3.6.1}}
+
When carried, the Mitre of Holiness confers [[fire resistance]]. When worn, it also provides the normal effects of a helm of brilliance, as well as extrinsic [[protection]] - augmenting your [[magic cancellation]] as a [[ring of protection]], but not cumulative with one. If the wearer is a Priest, they also take half physical damage from all [[undead]] monsters and major [[demon]]s - this property does not stack with other [[half physical damage]] sources.{{refsrc|src/mhitu.c|1707|version=NetHack 3.6.7}}
 
+
When [[invoked]], you get an [[energy]] boost equal to half of the difference between your maximum power and your current power, with a cap of 120; if it would have given you less than 12 energy, it fully refills your energy instead.{{refsrc|src/artifact.c|1480|version=NetHack 3.6.7|comment=code for ENERGY_BOOST effect}}
When [[invoked]], you get an [[energy]] boost equal to half of the difference between your maximum power and your current power, with a cap of 120; if it would have given you less than 12 energy, it fully refills your energy instead.<ref>[[artifact.c#line1238]] (code for <code>ENERGY_BOOST</code> effect) (u.uenmax + 1 - u.uen) / 2</ref>
 
  
 
The Mitre of Holiness is defined by the game as doing double damage to [[undead]], and thus cannot be used by a player polymorphed into an undead creature. It does not do double damage to undead when used as a weapon in practice, however, due to the game not checking for artifact damage bonuses when fighting with objects that aren't valid weapons.
 
The Mitre of Holiness is defined by the game as doing double damage to [[undead]], and thus cannot be used by a player polymorphed into an undead creature. It does not do double damage to undead when used as a weapon in practice, however, due to the game not checking for artifact damage bonuses when fighting with objects that aren't valid weapons.
Line 37: Line 36:
 
== References ==
 
== References ==
 
<references />
 
<references />
{{nethack-364}}
+
{{nethack-366}}
 
[[Category:Quest artifacts|Mitre of Holiness]]
 
[[Category:Quest artifacts|Mitre of Holiness]]

Revision as of 21:22, 25 April 2023

[   The Mitre of Holiness   Etched helmet.png
Base item helm of brilliance
Affiliation
When carried
When worn
  • half physical damage from
    undead and demons (Priests only)
  • protection (+1 to MC up to MC3)
When invoked
Base price 2000 zm
Weight 40

The Mitre of Holiness is the Priest quest artifact. It is the prize for completing the Priest quest, and is lawful for wishing purposes. Its base item type is a helm of brilliance.

Effects

When carried, the Mitre of Holiness confers fire resistance. When worn, it also provides the normal effects of a helm of brilliance, as well as extrinsic protection - augmenting your magic cancellation as a ring of protection, but not cumulative with one. If the wearer is a Priest, they also take half physical damage from all undead monsters and major demons - this property does not stack with other half physical damage sources.[1] When invoked, you get an energy boost equal to half of the difference between your maximum power and your current power, with a cap of 120; if it would have given you less than 12 energy, it fully refills your energy instead.[2]

The Mitre of Holiness is defined by the game as doing double damage to undead, and thus cannot be used by a player polymorphed into an undead creature. It does not do double damage to undead when used as a weapon in practice, however, due to the game not checking for artifact damage bonuses when fighting with objects that aren't valid weapons.

Strategy

See also: Invoke § Optimum invocation schedule

History

In NetHack 3.4.3 and variants based on it, The Mitre of Holiness does not provide protection.

Variants

xNetHack

In xNetHack, The Mitre of Holiness is removed; the Priest quest artifact is now a modified version of the Sceptre of Might.

FIQHack

In FIQHack, the Mitre of Holiness allows prayer in Gehennom, including the ability to turn undead.

References