Difference between revisions of "Throne room"

From NetHackWiki
Jump to navigation Jump to search
m (Generation: clarification: 'lower' levels should read 'deeper' levels)
m (Update sources)
Line 1: Line 1:
'''Throne rooms''' contain an assortment of monsters, a [[throne]], and a [[chest]]. The monsters are always generated hostile{{refsrc|mkroom.c|306}}, but are also often asleep.
+
'''Throne rooms''' contain an assortment of monsters, a [[throne]], and a [[chest]]. The monsters are always generated hostile{{refsrc|src/mkroom.c|348|version=NetHack 3.6.6}}, but are also often asleep.
  
 
==Generation==
 
==Generation==
A throne room is generated with a 1/6 chance in ordinary rooms-and-corridors levels from level 5 onwards, provided the level does not already have a [[shop]]{{refsrc|mklev.c|735}}.
+
A throne room is generated with a 1/6 chance in ordinary rooms-and-corridors levels from level 5 onwards, provided the level does not already have a [[shop]]{{refsrc|src/mklev.c|763|version=NetHack 3.6.6}}.
  
[[Throne room monster]]s are{{reffunc|mkroom.c|courtmon}}:
+
[[Throne room monster]]s are{{refsrc|src/mkroom.c|740|version=NetHack 3.6.6}}:
 
* [[dragon]]s (on level 15+)
 
* [[dragon]]s (on level 15+)
 
* [[giant]]s (13+)
 
* [[giant]]s (13+)
Line 17: Line 17:
 
Deeper levels are skewed to harder monsters. The limits for ordinary random monsters (based on the average of your and the dungeon floor's level) do not apply. Extinct or genocided monsters will be replaced with ordinary random monsters.
 
Deeper levels are skewed to harder monsters. The limits for ordinary random monsters (based on the average of your and the dungeon floor's level) do not apply. Extinct or genocided monsters will be replaced with ordinary random monsters.
  
Additionally, the throne may have one of the following monsters sitting on it. The monster will have a [[mace]] in its inventory. Deeper levels will have higher level monsters sitting on the throne.{{reffunc|mkroom.c|mk_zoo_thronemon}}
+
Additionally, the throne may have one of the following monsters sitting on it. The monster will have a [[mace]] in its inventory. Deeper levels will have higher level monsters sitting on the throne.{{refsrc|src/mkroom.c|248|version=NetHack 3.6.6}}
  
 
* [[Ogre king]]
 
* [[Ogre king]]
Line 49: Line 49:
 
==References==
 
==References==
  
 +
{{nethack-366}}
 
[[Category:Special rooms]]
 
[[Category:Special rooms]]

Revision as of 23:22, 4 July 2020

Throne rooms contain an assortment of monsters, a throne, and a chest. The monsters are always generated hostile[1], but are also often asleep.

Generation

A throne room is generated with a 1/6 chance in ordinary rooms-and-corridors levels from level 5 onwards, provided the level does not already have a shop[2].

Throne room monsters are[3]:

Deeper levels are skewed to harder monsters. The limits for ordinary random monsters (based on the average of your and the dungeon floor's level) do not apply. Extinct or genocided monsters will be replaced with ordinary random monsters.

Additionally, the throne may have one of the following monsters sitting on it. The monster will have a mace in its inventory. Deeper levels will have higher level monsters sitting on the throne.[4]

Special levels with throne rooms

There is a guaranteed throne room in Fort Ludios (if the Fort is generated at all).

There are also guaranteed thrones in the Castle and in Vlad's tower; however, the rooms they are located in are not considered throne rooms.

Messages

You hear the tones of courtly conversation.
You hear a sceptre pounded in judgment.
Someone shouts "Off with <his/her> head!"
A throne room is present on the level.
You hear Queen Beruthiel's cats!
A throne room is present on the level, and you are hallucinating.
You enter an opulent throne room!
You entered a throne room.

Strategy

If all the monsters are still asleep and you have stealth, you can pick them off one by one. Fighting all the monsters when they are awake can be dangerous for low-level characters: most of the monsters can use wands against you.

Most throne room monsters are slower than an unhasted player, making them vulnerable to hit-and-run or ranged attacks. However centaurs are fast, and may hit you several times per turn.

If you're trying to fight throne room monsters in a hallway, beware of monsters zapping a wand of digging down and leaving a hole between you and the throne room. Also, throne rooms can have multiple doors. If you are guarding one door, some monsters may leave the throne room through a second door and surround you.

History

The "royal" monsters generated on the throne with a mace did not exist in NetHack 3.4.3 or prior versions.

References