Difference between revisions of "Bullwhip"

From NetHackWiki
Jump to navigation Jump to search
(chance of whipping mount during pickup)
(Add languages template.)
 
(19 intermediate revisions by 11 users not shown)
Line 1: Line 1:
 +
{{languages}}
 
{{weapon
 
{{weapon
 
   |color=brown
 
   |color=brown
Line 11: Line 12:
 
}}
 
}}
  
A '''bullwhip''' is a kind of [[weapon]]. In addition to its obvious uses, it can be [[apply|applied]] to grab weapons out of enemies' hands.
+
A '''bullwhip''' is a type of [[weapon]] that appears in ''[[NetHack]]''. It is made of [[leather]].
  
Bullwhips are ineffective against [[thick-skinned]] monsters.
+
==Generation==
 +
All [[Archeologist]]s start with a +2 bullwhip.{{refsrc|src/u_init.c|29|version=NetHack 3.6.6}}
  
[[Archeologist]]s start with a +2 bullwhip.{{refsrc|src/u_init.c|30|version=NetHack 3.6.0}} This is a reference to the Indiana Jones movies of Lucas and Spielberg.
+
[[Balrog]]s are [[Monster starting inventory|always generated with]] a bullwhip, and [[horned devil]]s also have a 25% chance of being spawned with a bullwhip. In the balrog's case, the order of monster weapon preference means they will never wield it unless they somehow lose their guaranteed [[broadsword]].{{refsrc|src/weapon.c|639|version=NetHack 3.6.6}}
  
[[Balrog]]s are always generated with a bullwhip, but owing to the order of monster weapon preference, they will never wield it unless they somehow lose their [[broadsword]].  While most monsters could theoretically wield a bullwhip they find, they prefer most other weapons to it (notable exceptions include [[Quarterstaff|quarterstaves]] and [[dagger]]s; monsters will wield whips in preference to these).
+
[[Player monster]]s have a chance of receiving a bullwhip as a random melee weapon; [[Archeologist (player monster)|archeologists]] have a 50% chance of their melee weapon being replaced with a bullwhip.{{refsrc|src/mplayer.c|165|version=NetHack 3.6.6}}
  
[[Horned devil]]s also have a 25% chance of being spawned with a bullwhip.  Since, unlike balrogs, they are not generated with another weapon, they will wield the bullwhip by default.
+
==Whip skill==
 +
{{whip skill table}}
  
== Tricks ==
+
Both bullwhips and [[rubber hose]]s use the whip skill. There are no [[artifact weapon|artifact]] whips.
  
A bullwhip can be applied to snap it in a direction. This can allow you to perform a number of special tricks<ref name="Use Whip">{{function|apply.c|use_whip}}</ref>:
+
==Effects==
 +
Bullwhips are low-damage weapons that are ineffective against [[thick-skinned]] monsters. In addition to its use as a weapon, however, it can be [[applied]] to snap it in a direction and perform a number of special tricks:<ref name="Use Whip">{{function|apply.c|use_whip}}</ref>
 
* Attack a monster normally.
 
* Attack a monster normally.
* Disarm an enemy.  See below.
+
* [[#Disarming|Disarm an enemy]].
* Pick an item up off the floor when you are riding a [[steed]] or [[levitation|levitating]]. (A [[cockatrice]] corpse will not [[petrify]] you.{{refsrc|src/pickup.c|252|version=NetHack 3.6.0}})
+
* [[#Picking up items|Retrieving items]].
* Fish an item out of a [[pool]] below you.
+
* Wrap around [[furniture]], a [[boulder]], or a [[large]] monster to pull yourself out of a [[pit]].
* Wrap around [[furniture]], a [[boulder]], or a [[Monsters_(by_size)#Large_Monsters|large monster]] to pull yourself out of a [[pit]].
+
 
 +
The success of these tricks does not depend on your actual [[skill]] with the whip. Instead, proficiency is based on your [[dexterity]], whether you are an [[Archaeologist]], and whether you are [[fumbling]]; whip tricks will always fail unless you are proficient. A character who is not an archaeologist must have a dexterity higher than 14 to be considered proficient.
  
The success of these tricks does not depend on your actual [[skill]] with the whip; instead, proficiency is based on your [[dexterity]], whether you are an [[Archaeologist]], and whether you are [[fumbling]].  Whip tricks will always fail unless you are proficient (an Archaeologist or Dex &gt; 14).
+
''NetHack'' makes the following assumptions to determine what to do when a whip is applied:<ref name="Use Whip"/>
  
NetHack makes the following assumptions to determine what to do when a whip is applied<ref name="Use Whip"/>:
+
* If you are in a pit, it is assumed that you are attempting to get out of the pit, unless you are applying the whip towards a small monster, in which case it is assumed that you are trying to attack it.
 +
* If you are not in a pit, and the monster is wielding a weapon, then you are attempting to disarm a monster.
 +
* If you are not in a pit and you apply the whip towards a monster without a wielded weapon, then you are attempting to hit the monster.
 +
* You cannot perform any tricks (besides attacking monsters) if you are [[confused]] or [[engulfed]].
  
* If you're in a pit, it is assumed that you are attempting to get out of the pit, unless you are applying the whip towards a small monster, in which case it is assumed that you are trying to attack it.
+
===Disarming===
 +
If applying a bullwhip at an enemy disarms them, the disarmed weapon may end up on the floor at the enemy's feet, on the floor at your feet, or in your inventory, depending on a 'proficiency' check. Disarming a pet does not reduce its [[tameness]], but disarming a peaceful monster will anger it.
  
* If you are not in a pit, and the monster is wielding a weapon, then you are attempting to disarm a monster.
+
If the target is wielding a non-cursed weapon and you succeed, disarming does not break [[weaponless]] conduct. Trying to disarm non-pets can break the conduct because you always have a 10% chance of attacking instead, and you can [[options#safe_pet|decline]] only for pets.
 +
 
 +
Disarming is the only trick that whip-wielding monsters can use. It functions similarly to the same trick used by the player, with the following exceptions:{{refsrc|src/muse.c|1872|version=NetHack 3.6.0|comment=whip use by monsters}}
 +
* An [[iron ball]] is too heavy to be disarmed.
 +
* A horned devil or other [[silver]]-hating monster will never use a whip to pull a silver item from the player's hands into its inventory; if one would, the item is dropped at the player's feet instead.
 +
 
 +
===Picking up items===
 +
Applying a bullwhip down towards an item while you are riding a [[steed]] or [[levitating]] will pick it up off the floor or out of a [[pool]] if applicable. A [[cockatrice]] corpse will not [[petrify]] you when picked up in this manner.{{refsrc|src/pickup.c|252|version=NetHack 3.6.0}} When applying a whip downwards while riding your steed, there is always some chance (20-33%) that you will hit your steed instead.{{refsrc|src/apply.c|2499|version=NetHack 3.6.0}}
 +
 
 +
{{upcoming|NetHack 3.7.0|Previously, you could snag an item from the bottom of water or lava using a bullwhip. This is no longer possible, and applying a bullwhip toward lava can now burn or even destroy it.}}
 +
 
 +
===Riding===
 +
Applying the whip to snap it at your steed will cause it to [[gallop]], temporarily increasing its speed but reducing its tameness; this includes hitting your steed while trying to pick up an item off the floor.  
  
* If you are not in a pit and you apply the whip towards a monster without a wielded weapon, then you are attempting to hit the monster.
+
==Strategy==
 +
Bullwhips are viable utility items, primarily sought after for their ability to pry desirable weapons out of the hands of a [[humanoid]] pet and/or forcing it to pick up and wield a different (usually better) weapon. While disarming thankfully does not constitute pet abuse, you will anger any peaceful monsters you disarm - using a bullwhip to grab the [[Minetown]] [[watch captain]]'s [[silver saber]] is probably a [[Bad Idea]] if you expect to make off with it scot-free. Most monsters can wield bullwhips, but will prefer most other weapons over them, as indicated in the case of the balrog - though they will wield a whip over some weapons, such as [[quarterstaves]] and [[dagger]]s.
  
* You cannot perform any tricks (besides attacking monsters) if you are confused.
+
Players looking to levitate frequently (e.g., [[Barbarian]]s using [[The Heart of Ahriman]]) will also want to carry a bullwhip with them in order to reach items on the floor, as well as those retrieving loot or thrown weapons from [[moat]]s - since this is reliant on dexterity rather than weapon skill, all roles can make use of this through varying amounts of stat exercise. '''''Beware:''''' snagging a wielded [[footrice]] [[corpse]] with one pulls it into your hands and [[stoning|turns you to stone]] unless you are wearing [[gloves]], in a stoning-resistant form, or are a [[golem]] (in which case you become a stone golem). However, picking up one off the floor this way is safe and will not endanger you.{{refsrc|src/pickup.c|256|version=NetHack 3.6.6|comment=apply.c does not call the usual check when using the whip to pick up the corpse off the ground, but does call it when a weaponized corpse is snatched.}}{{refsrc|src/apply.c|2714|version=NetHack 3.6.6}}{{refsrc|src/apply.c|2849|version=NetHack 3.6.6}} [[Flight]] will not allow you to pick up items from moats this way unless you are also levitating.
  
* You cannot perform any tricks (besides attacking monsters) if you are swallowed.
+
Bullwhips can be used as an aid for [[riding]] players - in addition to increasing a steed's movement speed, all roles capable of advancing the whip skill can also advance the riding skill to basic. While the former can also be achieved by [[kick]]ing your steed, rendering the bullwhip somewhat redundant, it is still useful for picking up items off the floor while unskilled if you encounter one early enough.
  
===Disarming===
+
==History==
If a bullwhip disarms an enemy, the disarmed weapon may end up on the floor at the enemy's feet, on the floor at [[you]]r feet, or in your inventory, depending on a "proficiency check".
+
The bullwhip is introduced in [[NetHack 3.0.0]].
  
Disarming a pet does not reduce its [[tameness]].  This is one way to pry a desirable weapon out of the hands of a [[humanoid]] pet&mdash;for example, to get [[Demonbane]] from a [[figurine]] [[Archon]]&mdash;or to force the pet to pick up and wield a different weapon.
+
In [[NetHack 3.4.3]] and previous versions, including some variants based on those versions, the bullwhip is often used to reliably disarm a [[figurine]] [[Archon]] and obtain [[Demonbane]] - monsters generated by figurines still spawn with their normal starting inventory. The bullwhip was also involved in a few [[Bugs in NetHack 3.4.3|now-fixed bugs]]:
  
Disarming a peaceful monster will anger it, so using a bullwhip to grab the [[watchman|Minetown Watch captain's]] [[silver saber]] is probably a [[Bad Idea]], unless you're sure you can escape him quickly, are willing to take the consequences of killing him, or have a medium strength pet on hand who would appreciate not having to deal with the weapon.
+
* A player [[polymorph]]ed into a xorn cannot pick up items in pits, and could not fall into them; the primary workaround was to obtain levitation and apply a bullwhip downward towards the pit in question. This was bug C343-16, and was fixed on January 27, 2004.
 +
* [[Sunsword]] would continue to remain lit if snatched out of a monster's hands with a bullwhip. This was bug C343-106, and was fixed on July 15, 2005.
 +
* Applying a bullwhip while stunned or confused and at an edge of the map may cause a panic or crash. This was bug C343-383, and fixed prior to [[NetHack 3.6.0|the next version's]] release; the commits containing the fixes was pushed on February 23, 2009.<ref>[https://sourceforge.net/p/nethack/NetHack/ci/e11c136bc9d5e254ab97fa533d32cc8f25c4e53e Commit e11c13, NetHack 3.4.3 @ SourceForge]</ref><ref>[https://sourceforge.net/p/nethack/NetHack/ci/b71b3e920af4b143bdfcb0b443de68343f099235 Commit b71b3e, NetHack 3.4.3 @ SourceForge]</ref>
  
If the target is wielding a non-cursed weapon and you succeed, disarming does not break [[weaponless]] conduct. Trying to disarm non-pets can break the conduct because you always have a 10% chance of attacking instead, and you can [[options#safe_pet|decline]] only for pets.
+
==Origin==
 +
The Archaeologist's starting bullwhip, along with the leather jacket and fedora, is one of the many trademark accessories of [[wikipedia:Indiana Jones|Indiana Jones]], the star titular character of a franchise of movies made by George Lucas and Steven Spielberg. Jones in turn is based on the heroes of 1930s pulp serials and inspired the Archaeologist role.
  
===Pickup Items while Riding===
+
==Messages==
 +
{{message|Why beat a dead horse?|You applied a bullwhip downwards while flying or levitating, on a square containing a horse corpse.}}
  
When applying a whip downwards while riding your steed, there is always some chance (20-33%) that you will hit your steed instead.{{refsrc|src/apply.c|2499|version=NetHack 3.6.0}} This has the effect of temporarily increasing the speed of your steed.
+
==Variants==
 +
===SLASH'EM===
 +
In [[SLASH'EM]], an Archeologist [[wield]]ing a bullwhip will not fall through [[trap door]]s; this does not require a dexterity check. Objects on the trap door might still be shoved through.{{refsrc|trap.c|359|version=SLASH'EM_0.0.7E7F2}} The [[Undead Slayer]] has a 25% chance of starting with a +2 bullwhip; this is derived from the ''Castlevania'' franchise, where the whip is frequently used by the Belmont clan.
  
===Use by monsters===
+
Bullwhips tend to see more use in SLASH'EM - players with powerful humanoid pets will want to enchant that pet's weapon so that it can take on late-game foes that [[Need +x weapon to hit|need enchanted weapons of a certain level to hit]]. Additionally, [[Vampire (starting race in SLASH'EM)|vampire]] characters will want a bullwhip and a source of levitation to retrieve items in moats or pits.
  
The only trick a [[horned devil]] or other whip-bearing monster may use is disarm.  It functions similarly to the same trick used by the player, with the following exceptions:{{refsrc|src/muse.c|1872|version=NetHack 3.6.0|comment=whip use by monsters}}
+
====Messages====
* An [[iron ball]] is too heavy to be disarmed.
+
{{message|But thanks to your trusty whip ... You don't fall in.|A trap door opened under you, but you were an Archeologist wielding a bullwhip, preventing you from falling through.}}
* A horned devil or other [[silver]]-hating monster will never use a whip to pull a silver item from the player's hands into its inventory; if one would, the item is dropped at the player's feet instead.
 
  
== Whip skill ==
+
===SlashTHEM===
 +
In addition to SLASH'EM examples, [[SlashTHEM]] adds [[Liontamer]], an artifact bullwhip acts as the first [[sacrifice gift]] for [[Zookeeper]]s. Liontamer has +5 to-hit and +8 damage versus [[feline]]s.
  
{{whip skill table}}
+
===UnNetHack===
 +
In [[UnNetHack]], an archeologist [[corpse]] can sometimes be found under a boulder trap, and may be accompanied by the former adventurer's bullwhip. The [[Ruins of Moria]] branch always has an uncursed fireproof bullwhip, wielded by the unique [[balrog]] [[Durin's Bane]].
  
Both bullwhips and [[rubber hose]]s use the whip skill. There are no [[artifact weapon|artifact]] whips.
+
===dNetHack===
 +
[[dNetHack]] also features Durin's Bane, this time as the [[quest nemesis]] of the [[Dwarf (starting race)|dwarven]] [[Noble]]; it generates with a cursed +9 bullwhip.
  
==Encyclopedia==
+
==Encyclopedia entry==
 
{{encyclopedia|
 
{{encyclopedia|
 
"Good," he said and, unbelievably, smiled at me, a smirk like
 
"Good," he said and, unbelievably, smiled at me, a smirk like
Line 75: Line 105:
 
A bullwhip?"
 
A bullwhip?"
 
|[ Melusine, by Sarah Monette ]}}
 
|[ Melusine, by Sarah Monette ]}}
 
==SLASH'EM==
 
An [[Archaeologist]] [[wield]]ing a bullwhip will not fall through [[trap door]]s, regardless of [[dexterity]]. Objects on the trap might still be shoved through.{{refsrc|trap.c|359|version=SLASH'EM_0.0.7E7F2}}
 
; But thanks to your trusty whip ... You don't fall in.
 
 
The [[Undead Slayer]] sometimes starts with a bullwhip. This is a reference to the Castlevania series.
 
  
 
== References ==
 
== References ==
 +
<references/>
  
<references />
 
 
[[Category:Weapons]]
 
[[Category:Weapons]]
{{nethack-360}}
+
{{nethack-366}}

Latest revision as of 06:22, 8 March 2024

) Bullwhip.png
Name bullwhip
Appearance bullwhip
Damage vs. small 1d2
Damage vs. large 1
To-hit bonus +0
Weapon skill whip
Size one-handed
Base price 4 zm
(+10/positive
enchant)
Weight 20
Material leather

A bullwhip is a type of weapon that appears in NetHack. It is made of leather.

Generation

All Archeologists start with a +2 bullwhip.[1]

Balrogs are always generated with a bullwhip, and horned devils also have a 25% chance of being spawned with a bullwhip. In the balrog's case, the order of monster weapon preference means they will never wield it unless they somehow lose their guaranteed broadsword.[2]

Player monsters have a chance of receiving a bullwhip as a random melee weapon; archeologists have a 50% chance of their melee weapon being replaced with a bullwhip.[3]

Whip skill

Whip
Max Role
Basic
Expert

Both bullwhips and rubber hoses use the whip skill. There are no artifact whips.

Effects

Bullwhips are low-damage weapons that are ineffective against thick-skinned monsters. In addition to its use as a weapon, however, it can be applied to snap it in a direction and perform a number of special tricks:[4]

The success of these tricks does not depend on your actual skill with the whip. Instead, proficiency is based on your dexterity, whether you are an Archaeologist, and whether you are fumbling; whip tricks will always fail unless you are proficient. A character who is not an archaeologist must have a dexterity higher than 14 to be considered proficient.

NetHack makes the following assumptions to determine what to do when a whip is applied:[4]

  • If you are in a pit, it is assumed that you are attempting to get out of the pit, unless you are applying the whip towards a small monster, in which case it is assumed that you are trying to attack it.
  • If you are not in a pit, and the monster is wielding a weapon, then you are attempting to disarm a monster.
  • If you are not in a pit and you apply the whip towards a monster without a wielded weapon, then you are attempting to hit the monster.
  • You cannot perform any tricks (besides attacking monsters) if you are confused or engulfed.

Disarming

If applying a bullwhip at an enemy disarms them, the disarmed weapon may end up on the floor at the enemy's feet, on the floor at your feet, or in your inventory, depending on a 'proficiency' check. Disarming a pet does not reduce its tameness, but disarming a peaceful monster will anger it.

If the target is wielding a non-cursed weapon and you succeed, disarming does not break weaponless conduct. Trying to disarm non-pets can break the conduct because you always have a 10% chance of attacking instead, and you can decline only for pets.

Disarming is the only trick that whip-wielding monsters can use. It functions similarly to the same trick used by the player, with the following exceptions:[5]

  • An iron ball is too heavy to be disarmed.
  • A horned devil or other silver-hating monster will never use a whip to pull a silver item from the player's hands into its inventory; if one would, the item is dropped at the player's feet instead.

Picking up items

Applying a bullwhip down towards an item while you are riding a steed or levitating will pick it up off the floor or out of a pool if applicable. A cockatrice corpse will not petrify you when picked up in this manner.[6] When applying a whip downwards while riding your steed, there is always some chance (20-33%) that you will hit your steed instead.[7]

The following information pertains to an upcoming version (NetHack 3.7.0). If this version is now released, please verify that it is still accurate, then update the page to incorporate this information.

Previously, you could snag an item from the bottom of water or lava using a bullwhip. This is no longer possible, and applying a bullwhip toward lava can now burn or even destroy it.

Riding

Applying the whip to snap it at your steed will cause it to gallop, temporarily increasing its speed but reducing its tameness; this includes hitting your steed while trying to pick up an item off the floor.

Strategy

Bullwhips are viable utility items, primarily sought after for their ability to pry desirable weapons out of the hands of a humanoid pet and/or forcing it to pick up and wield a different (usually better) weapon. While disarming thankfully does not constitute pet abuse, you will anger any peaceful monsters you disarm - using a bullwhip to grab the Minetown watch captain's silver saber is probably a Bad Idea if you expect to make off with it scot-free. Most monsters can wield bullwhips, but will prefer most other weapons over them, as indicated in the case of the balrog - though they will wield a whip over some weapons, such as quarterstaves and daggers.

Players looking to levitate frequently (e.g., Barbarians using The Heart of Ahriman) will also want to carry a bullwhip with them in order to reach items on the floor, as well as those retrieving loot or thrown weapons from moats - since this is reliant on dexterity rather than weapon skill, all roles can make use of this through varying amounts of stat exercise. Beware: snagging a wielded footrice corpse with one pulls it into your hands and turns you to stone unless you are wearing gloves, in a stoning-resistant form, or are a golem (in which case you become a stone golem). However, picking up one off the floor this way is safe and will not endanger you.[8][9][10] Flight will not allow you to pick up items from moats this way unless you are also levitating.

Bullwhips can be used as an aid for riding players - in addition to increasing a steed's movement speed, all roles capable of advancing the whip skill can also advance the riding skill to basic. While the former can also be achieved by kicking your steed, rendering the bullwhip somewhat redundant, it is still useful for picking up items off the floor while unskilled if you encounter one early enough.

History

The bullwhip is introduced in NetHack 3.0.0.

In NetHack 3.4.3 and previous versions, including some variants based on those versions, the bullwhip is often used to reliably disarm a figurine Archon and obtain Demonbane - monsters generated by figurines still spawn with their normal starting inventory. The bullwhip was also involved in a few now-fixed bugs:

  • A player polymorphed into a xorn cannot pick up items in pits, and could not fall into them; the primary workaround was to obtain levitation and apply a bullwhip downward towards the pit in question. This was bug C343-16, and was fixed on January 27, 2004.
  • Sunsword would continue to remain lit if snatched out of a monster's hands with a bullwhip. This was bug C343-106, and was fixed on July 15, 2005.
  • Applying a bullwhip while stunned or confused and at an edge of the map may cause a panic or crash. This was bug C343-383, and fixed prior to the next version's release; the commits containing the fixes was pushed on February 23, 2009.[11][12]

Origin

The Archaeologist's starting bullwhip, along with the leather jacket and fedora, is one of the many trademark accessories of Indiana Jones, the star titular character of a franchise of movies made by George Lucas and Steven Spielberg. Jones in turn is based on the heroes of 1930s pulp serials and inspired the Archaeologist role.

Messages

Why beat a dead horse?
You applied a bullwhip downwards while flying or levitating, on a square containing a horse corpse.

Variants

SLASH'EM

In SLASH'EM, an Archeologist wielding a bullwhip will not fall through trap doors; this does not require a dexterity check. Objects on the trap door might still be shoved through.[13] The Undead Slayer has a 25% chance of starting with a +2 bullwhip; this is derived from the Castlevania franchise, where the whip is frequently used by the Belmont clan.

Bullwhips tend to see more use in SLASH'EM - players with powerful humanoid pets will want to enchant that pet's weapon so that it can take on late-game foes that need enchanted weapons of a certain level to hit. Additionally, vampire characters will want a bullwhip and a source of levitation to retrieve items in moats or pits.

Messages

But thanks to your trusty whip ... You don't fall in.
A trap door opened under you, but you were an Archeologist wielding a bullwhip, preventing you from falling through.

SlashTHEM

In addition to SLASH'EM examples, SlashTHEM adds Liontamer, an artifact bullwhip acts as the first sacrifice gift for Zookeepers. Liontamer has +5 to-hit and +8 damage versus felines.

UnNetHack

In UnNetHack, an archeologist corpse can sometimes be found under a boulder trap, and may be accompanied by the former adventurer's bullwhip. The Ruins of Moria branch always has an uncursed fireproof bullwhip, wielded by the unique balrog Durin's Bane.

dNetHack

dNetHack also features Durin's Bane, this time as the quest nemesis of the dwarven Noble; it generates with a cursed +9 bullwhip.

Encyclopedia entry

"Good," he said and, unbelievably, smiled at me, a smirk like
a round of rotted cheese. "What did your keeper use on you?
A bullwhip?"

[ Melusine, by Sarah Monette ]

References