Reduce generation probabilities of the wand of digging
In earlier versions of NetHack, wands of digging generated fairly often, allowing players to do a large amount of digging through the maze walls in Gehennom and giving them a chance of an early escape item. In the current version, the need for both of these things has been reduced: supply chests give a supply of early escape items (including wands of digging), and Gehennom is no longer mostly made of mazes with diggable walls. As such, there is no longer a reason to generate wands of digging in such large numbers, even though it was correct in the past. This commit modifies some of the generation probabilities for wands of digging in order to make them less abundant, in order to work better with the code changes since the previous version.
This commit is contained in:
+4
-4
@@ -1453,7 +1453,7 @@ WAND("secret door detection",
|
||||
WAN_SECRET_DOOR_DETECTION),
|
||||
WAND("enlightenment", "crystal", 15, 150, 1, NODIR, GLASS, HI_GLASS,
|
||||
WAN_ENLIGHTENMENT),
|
||||
WAND("create monster", "maple", 45, 200, 1, NODIR, WOOD, HI_WOOD,
|
||||
WAND("create monster", "maple", 50, 200, 1, NODIR, WOOD, HI_WOOD,
|
||||
WAN_CREATE_MONSTER),
|
||||
WAND("wishing", "pine", 5, 500, 1, NODIR, WOOD, HI_WOOD,
|
||||
WAN_WISHING),
|
||||
@@ -1477,13 +1477,13 @@ WAND("cancellation", "platinum", 45, 200, 1, IMMEDIATE, PLATINUM, CLR_WHITE,
|
||||
WAN_CANCELLATION),
|
||||
WAND("teleportation", "iridium", 45, 200, 1, IMMEDIATE, METAL,
|
||||
CLR_BRIGHT_CYAN, WAN_TELEPORTATION),
|
||||
WAND("opening", "zinc", 25, 150, 1, IMMEDIATE, METAL, HI_METAL,
|
||||
WAND("opening", "zinc", 30, 150, 1, IMMEDIATE, METAL, HI_METAL,
|
||||
WAN_OPENING),
|
||||
WAND("locking", "aluminum", 25, 150, 1, IMMEDIATE, METAL, HI_METAL,
|
||||
WAND("locking", "aluminum", 30, 150, 1, IMMEDIATE, METAL, HI_METAL,
|
||||
WAN_LOCKING),
|
||||
WAND("probing", "uranium", 30, 150, 1, IMMEDIATE, METAL, HI_METAL,
|
||||
WAN_PROBING),
|
||||
WAND("digging", "iron", 55, 150, 1, RAY, IRON, HI_METAL,
|
||||
WAND("digging", "iron", 40, 150, 1, RAY, IRON, HI_METAL,
|
||||
WAN_DIGGING),
|
||||
/* magic missile ... lightning must be in this order; see buzz() */
|
||||
WAND("magic missile", "steel", 50, 150, 1, RAY, IRON, HI_METAL,
|
||||
|
||||
Reference in New Issue
Block a user