Previous Next Table of Contents

9. Item Values for Drink Containers

DRINKCON (Type Flag 17) and FOUNTAIN (Type Flag 23)

     value 0: Capacity of container
     value 1: Current quantity in container
     value 2: see below
     value 3: Non-zero if the drink poisoned, 0 otherwise.

Value 2 is a number which defines the type of liquid in the drink container, from the following table:


         Type           nr.         Effect of Liquid On:
                               Drunkness   Fullness   Thirst
         LIQ_WATER      0      0           1           10
         LIQ_BEER       1      3           2           5
         LIQ_WINE       2      5           2           5
         LIQ_ALE        3      2           2           5
         LIQ_DARKALE    4      1           2           5
         LIQ_WHISKY     5      6           1           4
         LIQ_LEMONADE   6      0           1           8
         LIQ_FIREBRT    7      10          0           0
         LIQ_LOCALSPC   8      3           3           3
         LIQ_SLIME      9      0           4           -8
         LIQ_MILK       10     0           3           6
         LIQ_TEA        11     0           1           6
         LIQ_COFFE      12     0           1           6
         LIQ_BLOOD      13     0           2           -1
         LIQ_SALTWATER  14     0           1           -2
         LIQ_CLEARWATER 15     0           0           13

The above values for drunkness, fullness, and thirst are in the units of one hour of effect per four units of liquid drunk. For example, imagine that Quifael drinks an entire bottle (say 7 units) of saltwater. According to the table above, saltwater has a drunkness value of 0, fullness value of 1 and thirst value of -2. Therefore:

His Drunkness is not changed ((7/4)*0) His Fullness increases by ((7/4)*1) hours His Thirst increases by ((7/4)*-2) hours, thus making him more thirsty.

A player's drunkness, fullness, and thirst can range from 0 to 24. 24 is the maximum; 0 means the person is completely sober, hungry, or thirsty respectively. For immortals, these values are typically -1.


Previous Next Table of Contents