Difference between revisions of "Hit points"

From Discworld MUD Wiki
Jump to: navigation, search
m (Cosmetic fixes)
(Maximum hit points: precise that hit points in the formula is a floored number)
Line 7: Line 7:
 
To determine a player's maximum hit point total, read off the 'weight factor' from the graph to the right based on the player's weight, and then apply the following formula:<br><br>
 
To determine a player's maximum hit point total, read off the 'weight factor' from the graph to the right based on the player's weight, and then apply the following formula:<br><br>
  
{{Prebox|Max HP {{=}} (150 + 10 * [[constitution|con]] + 4 * [[adventuring.health|ad.he bonus]]) * ''weight-factor''}}
+
{{Prebox|Max HP {{=}} floor( (150 + 10 * [[constitution|con]] + 4 * [[adventuring.health|ad.he bonus]]) * ''weight-factor'' )}}
  
 
{{-}}
 
{{-}}
 +
 
==Hit point regeneration==
 
==Hit point regeneration==
 
The rate at which hitpoints regenerate is controlled by the player's [[constitution]] and [[strength]] stats, with a stronger emphasis on the former.  Specifically, it is:<br><br>
 
The rate at which hitpoints regenerate is controlled by the player's [[constitution]] and [[strength]] stats, with a stronger emphasis on the former.  Specifically, it is:<br><br>

Revision as of 14:53, 13 March 2010

Hit points (also known as Health points or just HP) are a measure of a player's vitality. When the player takes damage by any means, they lose hit points. If their hit points fall below zero, they get a visit from he who talks like this.

Maximum hit points

HP to weight factor

The maximum amount of hit points a player has is mostly controlled by their bonus in adventuring.health. There is also an effect from the player's weight.

To determine a player's maximum hit point total, read off the 'weight factor' from the graph to the right based on the player's weight, and then apply the following formula:

Max HP = floor( (150 + 10 * con + 4 * ad.he bonus) * weight-factor )


Hit point regeneration

The rate at which hitpoints regenerate is controlled by the player's constitution and strength stats, with a stronger emphasis on the former. Specifically, it is:

HP regen per round = rounddown(sqrt(200/9.8 * (4 * ln(con) + ln (str)) - 50) - 10)

Ways to recover hit points

Beyond waiting for them to regenerate, players can recover hit points via any of the following means:

Players can also use stat items to increase their constitution or strength stats, which may result in an increase in the natural hit point regeneration rate.

Viewing hitpoints

Players can view their current and maximum hitpoints via the score command. If the player is in combat or otherwise in most situations where the player takes damage, the monitor will show up detailing their current and maximum hitpoints.

Players can see approximately what fraction of their maximum hitpoints another character has by using the health command, or if grouped with that player, by using 'group status'.

See also

External links