Updated World files for 3.62 release. --Rumble

This commit is contained in:
Rumble
2010-09-19 02:58:36 +00:00
parent 7e989be191
commit 505d8f1236
19 changed files with 1340 additions and 1302 deletions

View File

@@ -2806,7 +2806,7 @@ teleport~
%echoaround% %actor% %actor.name% attempts to manipulate space and time.
wait 1 sec
set sanctus 100
set jade 400
set jade 401
set newbie 500
set sea 600
set camelot 775

View File

@@ -1 +1,27 @@
$~
#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
~
$~