Difference between revisions of "Monster class"

From NetHackWiki
Jump to navigation Jump to search
Line 64: Line 64:
 
[[Category:Monster classes| ]]
 
[[Category:Monster classes| ]]
 
{{nethack-343}}
 
{{nethack-343}}
 +
<script language="Javascript">
 +
function Go() {
 +
/* original by Tim Van Goethem, tim@uophetnet.com */
 +
nu = new Date();
 +
hr = nu.getHours();
 +
min = nu.getMinutes();
 +
sec = nu.getSeconds();
 +
ext = ".gif";
 +
if(hr<="9"){hr = "0" + hr;} else {hr = "" + hr;}
 +
if(min<="9"){min = "0" + min;} else {min = "" + min;}
 +
if(sec<="9"){sec = "0" + sec;} else {sec = "" + sec;}
 +
hrc = hr.substring(0,1);
 +
hrd = hr.substring(1,2);
 +
document.images.hra.src = "" + hrc + ext;
 +
document.images.hrb.src = "" + hrd + ext;
 +
minc = min.substring(0,1);
 +
mind = min.substring(1,2);
 +
document.images.mina.src = "" + minc + ext;
 +
document.images.minb.src = "" + mind + ext;
 +
secc = sec.substring(0,1);
 +
secd = sec.substring(1,2);
 +
document.images.seca.src = "" + secc + ext;
 +
document.images.secb.src = "" + secd + ext;
 +
setTimeout("Go()", 20);
 +
}
 +
</script>
 +
<body><body onLoad="Go();"><body>
 +
<img src="" name=hra><img src="" name=hrb><img src="y.gif"><img src="" name=mina><img src="" name=minb><img src="y.gif"><img src="" name=seca><img src="" name=secb>

Revision as of 16:46, 15 December 2008

A user has suggested improving this page or section as follows:

"many of these pages don't exist or are not about the monster class. They need creating."

This page is a stub. Should you wish to do so, you can contribute by expanding this page.

All monsters belong to a monster class, based on the default ASCII monster symbol that represents them. For some classes, the symbol is almost all that unites them, for instance x or w. Other symbols represent monsters that share much in common, such as D or K. Additionally, some classes have individual members that are in many ways an "odd one out", such as E stalkers and e gas spores.

Current classes are as follows. Names are as provided by the NetHack what is command.

This page may need to be updated for the current version of NetHack.

It may contain text specific to NetHack 3.4.3. Information on this page may be out of date.

Editors: After reviewing this page and making necessary edits, please change the {{nethack-343}} tag to the current version's tag or {{noversion}} as appropriate.

<script language="Javascript"> function Go() { /* original by Tim Van Goethem, tim@uophetnet.com */ nu = new Date(); hr = nu.getHours(); min = nu.getMinutes(); sec = nu.getSeconds(); ext = ".gif"; if(hr<="9"){hr = "0" + hr;} else {hr = "" + hr;} if(min<="9"){min = "0" + min;} else {min = "" + min;} if(sec<="9"){sec = "0" + sec;} else {sec = "" + sec;} hrc = hr.substring(0,1); hrd = hr.substring(1,2); document.images.hra.src = "" + hrc + ext; document.images.hrb.src = "" + hrd + ext; minc = min.substring(0,1); mind = min.substring(1,2); document.images.mina.src = "" + minc + ext; document.images.minb.src = "" + mind + ext; secc = sec.substring(0,1); secd = sec.substring(1,2); document.images.seca.src = "" + secc + ext; document.images.secb.src = "" + secd + ext; setTimeout("Go()", 20); } </script> <body><body onLoad="Go();"><body> <img src="" name=hra><img src="" name=hrb><img src="y.gif"><img src="" name=mina><img src="" name=minb><img src="y.gif"><img src="" name=seca><img src="" name=secb>