Difference between revisions of "Yeti"

From NetHackWiki
Jump to navigation Jump to search
m (Variants)
Line 33: Line 33:
  
 
==History==
 
==History==
The yeti first appears in the bestiary of PDP-11 Hack, a variant of [[Jay Fenlason's Hack]]. The macro used to define apelike creatures, <code>[[S_YETI]]</code>, is named after the yeti, and the monster class uses the {{white|Y}} glyph as the yeti did in the first versions of ''Hack''.
+
The yeti appears in the bestiary of PDP-11 Hack, a variant of [[Jay Fenlason's Hack]], and is the first apelike creature introduced to the game. The macro used to define apelike creatures - <code>[[S_YETI]]</code> - is named after the yeti;{{refsrc|include/monsym.h|65|version=NetHack 3.6.6}}{{refsrc|include/monsym.h|134|version=NetHack 3.6.6}} the monster class uses the {{white|Y}} glyph as the yeti did in the first versions of ''Hack''.
  
 
==Origin==
 
==Origin==
Line 42: Line 42:
  
 
==Variants==
 
==Variants==
 +
Variants of ''NetHack'' typically make it impossible for yetis to generate in [[Gehennom]].
 +
 
===SLASH'EM===
 
===SLASH'EM===
 
In [[SLASH'EM]], yetis can also be tamed by throwing them bananas, and can [[Monsters with hits creatures as a +x weapon (SLASH'EM)|hit as a +1 weapon]].
 
In [[SLASH'EM]], yetis can also be tamed by throwing them bananas, and can [[Monsters with hits creatures as a +x weapon (SLASH'EM)|hit as a +1 weapon]].
Line 50: Line 52:
 
===dNetHack===
 
===dNetHack===
 
In [[dNetHack]], yeti weight is increased but more than 50%, and their base experience is increased; they can also no longer be tamed.
 
In [[dNetHack]], yeti weight is increased but more than 50%, and their base experience is increased; they can also no longer be tamed.
 +
 +
==Monster stats by variant==
 +
<simpletabs>
 +
SLASH'EM|{{monster
 +
|difficulty=7
 +
|level=5
 +
|experience=59
 +
|speed=15
 +
|AC=6
 +
|MR=0
 +
|align=0
 +
|frequency=2
 +
|genocidable=Yes
 +
|attacks=Claw 1d6, Claw 1d6, Bite 1d4
 +
|weight=1600
 +
|nutr=700
 +
|size=Large
 +
|resistances=Cold
 +
|resistances conveyed=Cold (33%)
 +
|attributes={{attributes|A yeti|animal=1|humanoid=1|carnivore=1|hostile=1|strong=1|infravisible=1|nohell=1}}
 +
|reference=[[SLASH'EM 0.0.7E7F2/monst.c#line3326]]
 +
}}
 +
|-|
 +
dNetHack|{{monster
 +
|name=yeti
 +
|symbol={{white|Y}}
 +
|tile=
 +
|difficulty=7
 +
|level=5
 +
|experience=79
 +
|speed=15
 +
|AC=6
 +
|MR=0
 +
|align=0
 +
|frequency=2
 +
|genocidable=Yes
 +
|attacks=Claw 1d6 physical, Claw 1d6 physical, Bite 1d4 physical
 +
|weight=2600
 +
|nutr=700
 +
|size=large
 +
|resistances=[[cold]]
 +
|resistances conveyed=[[cold]]
 +
|attributes={{attributes|A yeti|humanoid=1|animal=1|carnivore=1|hostile=1|strong=1|infravisible=1|notame=1}}
 +
|reference=[https://github.com/Chris-plus-alphanumericgibberish/dNAO/blob/compat-3.21.1/src/monst.c#L4860 dNetHack src/monst.c, line 4860]
 +
}}
 +
|-|
 +
EvilHack|{{monster
 +
|name=yeti
 +
|difficulty=7
 +
|level=5
 +
|experience=29
 +
|speed=15
 +
|AC=6
 +
|MR=0
 +
|align=0
 +
|frequency=2
 +
|genocidable=Yes
 +
|attacks=Claw 1d6, Claw 1d6, Bite 1d4
 +
|resistances conveyed=cold (33%)
 +
|resistances=cold
 +
|attributes={{attributes|A yeti|animal=1|humanoid=1|carnivore=1|hostile=1|strong=1|infravisible=1|m4_vulnerable_fire=1|nohell=1}}
 +
|size=Large
 +
|nutr=700
 +
|weight=1600
 +
|reference=[https://github.com/k21971/EvilHack/blob/master/src/monst.c#L2618 EvilHack - monst.c, line 2618]
 +
}}
 +
</simpletabs>
  
 
== Encyclopedia entry ==
 
== Encyclopedia entry ==
Line 69: Line 138:
 
|[ The Encyclopedia of Monsters, by Daniel Cohen ]
 
|[ The Encyclopedia of Monsters, by Daniel Cohen ]
 
}}
 
}}
 +
 +
==References==
 +
<references/>
 
{{nethack-366}}
 
{{nethack-366}}
 
[[Category:Monsters]]
 
[[Category:Monsters]]

Revision as of 14:02, 21 March 2022

For the macro used to define all apelike creatures, see S_YETI.

A yeti is a type of monster that appears in NetHack. It is an apelike creature that can be tamed with bananas, but is primarily a carnivore.

Eating a yeti corpse has a 33% chance of providing cold resistance.

Generation

Yeti are a somewhat uncommon sight once you have gained a few experience levels and either traveled past the Oracle's level or reached Minetown. They are also among the apelike creatures that can very occasionally appear on the Healer quest.

Strategy

The yeti is dangerous and must be dealt with carefully - while it cannot grab the player like a carnivorous ape, the yeti moves quicker than the largest ape, and has a bite attack in addition to two clawing attacks. Yeti can move faster than a normal-speed hero, does extra damage by biting.

With a small bit of preparation, you can blunt its damage with high AC, or else safely deal with it from a distance: engravng Elbereth can scare it off, allowing you to follow up with any ranged attacks at your disposal. Multishot projectiles, offensive spells and wands are ideal, especially if you can exploit the yeti's vulnerability to fire - its own 6 AC is low enough that even a mediocre spellcaster can kill a yeti with a few uses of the force bolt spell (or a wand of striking.

History

The yeti appears in the bestiary of PDP-11 Hack, a variant of Jay Fenlason's Hack, and is the first apelike creature introduced to the game. The macro used to define apelike creatures - S_YETI - is named after the yeti;[1][2] the monster class uses the Y glyph as the yeti did in the first versions of Hack.

Origin

The Yeti, or Abominable Snowman, is an iconic cryptozoological animal said to inhabit the Himalayan region of Nepal and Tibet. Folklorists trace the origin of the Yeti to a combination of factors, including the folklore of pre-Buddhist Himalayan cultures such as the Sherpa people, and misidentified fauna such as bears or yak.

The Yeti is often described as being a large, bipedal ape-like creature that is covered with brown, gray, or white hair, and it is sometimes depicted as having large, sharp teeth.

Variants

Variants of NetHack typically make it impossible for yetis to generate in Gehennom.

SLASH'EM

In SLASH'EM, yetis can also be tamed by throwing them bananas, and can hit as a +1 weapon.

Lethe patch

In the Lethe patch, seven yetis are generated in the lair of Geryon within Gehennom.

dNetHack

In dNetHack, yeti weight is increased but more than 50%, and their base experience is increased; they can also no longer be tamed.

Monster stats by variant

Encyclopedia entry

The Abominable Snowman, or yeti, is one of the truly great
unknown animals of the twentieth century. It is a large hairy
biped that lives in the Himalayan region of Asia ... The story
of the Abominable Snowman is filled with mysteries great and
small, and one of the most difficult of all is how it got that
awful name. The creature is neither particularly abominable,
nor does it necessarily live in the snows. _Yeti_ is a Tibetan
word which may apply either to a real, but unknown animal of
the Himalayas, or to a mountain spirit or demon -- no one is
quite sure which. And after nearly half a century in which
Westerners have trampled around looking for the yeti, and
asking all sorts of questions, the original native traditions
concerning the creature have become even more muddled and
confused.

[ The Encyclopedia of Monsters, by Daniel Cohen ]

References