Difference between revisions of "M2 PRINCE"

From NetHackWiki
Jump to navigation Jump to search
(format)
(the enchantment is reset (if lower) after the item is generated, and that code doesn't alter the BUC status)
Line 24: Line 24:
 
* A prince that can wield weapons and has no special rules for its species is [[monster starting inventory#weapons|much more likely to receive a weapon]].{{refsrc|src/makemon.c|518|version=NetHack 3.6.7}}
 
* A prince that can wield weapons and has no special rules for its species is [[monster starting inventory#weapons|much more likely to receive a weapon]].{{refsrc|src/makemon.c|518|version=NetHack 3.6.7}}
 
* When throwing [[projectile]]s, a prince gets a +2 [[multishot]] bonus.{{refsrc|src/mthrowu.c|173|version=NetHack 3.6.7}}
 
* When throwing [[projectile]]s, a prince gets a +2 [[multishot]] bonus.{{refsrc|src/mthrowu.c|173|version=NetHack 3.6.7}}
* A prince's weapon will always be at least +1, and its armor will be at least +0.{{refsrc|src/makemon.c|1952|version=NetHack 3.6.7}}
+
* A prince's weapon will always be at least +1, and its armor will be at least +0.{{refsrc|src/makemon.c|1952|version=NetHack 3.6.7}} Note that their equipment still has the usual chance of being [[cursed]].
 
* [[Demon summoning]] by same-race sacrifice cannot summon a demon prince. Only [[demon lords and princes]] can summon demon princes with their melee attacks.
 
* [[Demon summoning]] by same-race sacrifice cannot summon a demon prince. Only [[demon lords and princes]] can summon demon princes with their melee attacks.
  

Revision as of 00:36, 12 June 2023

In the code of NetHack, the M2_PRINCE monster flag (and the is_prince() macro that queries it) indicates that a monster is an "overlord" to its kind.

List of monsters

The following monsters are princes:

Description

Being a prince has the following effects:

See also

References