tbamud-3.67/bin/
tbamud-3.67/cnf/
tbamud-3.67/lib/etc/
tbamud-3.67/lib/misc/
tbamud-3.67/lib/plrfiles/A-E/
tbamud-3.67/lib/plrfiles/F-J/
tbamud-3.67/lib/plrfiles/K-O/
tbamud-3.67/lib/plrfiles/P-T/
tbamud-3.67/lib/plrfiles/U-Z/
tbamud-3.67/lib/plrfiles/ZZZ/
tbamud-3.67/lib/plrobjs/A-E/
tbamud-3.67/lib/plrobjs/F-J/
tbamud-3.67/lib/plrobjs/K-O/
tbamud-3.67/lib/plrobjs/P-T/
tbamud-3.67/lib/plrobjs/U-Z/
tbamud-3.67/lib/plrobjs/ZZZ/
tbamud-3.67/lib/text/
tbamud-3.67/lib/text/help/
tbamud-3.67/lib/world/qst/
tbamud-3.67/lib/world/shp/
tbamud-3.67/log/
tbamud-3.67/src/
#26400
Healing Water~
1 s 100
~
set currenthunger %actor.hunger%
set currentthirst %actor.thirst%
if %currenthunger% > 20 && %currentthirst% > 0
  %send% %actor% Your stomach can't contain anymore!
else
  %send% %actor% The water seems to sparkle refreshingly as you drink.
  %echoaround% %actor% The clear water seems to perk %actor.name% up.
  %send% %actor% The clear water seems to perk %actor.name% up.
  dg_cast 'cure light' %actor%
  return 0
  if %actor.thirst% < 0
  else
    eval newhunger %currenthunger% + 1
    eval newthirst %currentthirst% + 5
    nop %actor.thirst(%newthirst%)%
    nop %actor.hunger(%newhunger%)%
    if %newthirst% > 20
      %send% %actor% You don't feel thirsty any more.
    end
  end
end
~
$~