diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-28 17:41:40 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-28 17:41:40 -0300 |
commit | 6a6ccf27161b239c974b4dadcb3cfc275f3581d7 (patch) | |
tree | d00870cb27fb2c6fe4b2a90f205a24d108e4e428 /npc/019-1 | |
parent | fec35860f0876dd7bb74a13896c28532c91ca766 (diff) | |
parent | d50cb8eff8d4f143b553cc33401f60baa6b03873 (diff) | |
download | serverdata-6a6ccf27161b239c974b4dadcb3cfc275f3581d7.tar.gz serverdata-6a6ccf27161b239c974b4dadcb3cfc275f3581d7.tar.bz2 serverdata-6a6ccf27161b239c974b4dadcb3cfc275f3581d7.tar.xz serverdata-6a6ccf27161b239c974b4dadcb3cfc275f3581d7.zip |
Partly Merge branch 'master' into testserver
Conflicts:
npc/commands/rate-management.txt
npc/functions/mobpoint.txt
Diffstat (limited to 'npc/019-1')
-rw-r--r-- | npc/019-1/well.txt | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/npc/019-1/well.txt b/npc/019-1/well.txt index 9eba86bfa..6f90d5fb7 100644 --- a/npc/019-1/well.txt +++ b/npc/019-1/well.txt @@ -31,7 +31,7 @@ L_Reckless: closedialog; warp "015-6", 363, 109; dispbottom l("Ouch! That was kinda reckless!"); - percentheal -155+readparam(bVit), 0; + percentheal -150+readparam(bVit), 0; close; // Easter Egg @@ -68,6 +68,13 @@ L_Throw: // Now we check if quest must start if (!.@q) goto L_Quest; + // If not, report if it is safe to jump + if (readparam(bVit) < 55) + mesc l("The item impact suggests you don't have enough vitality to jump inside."), 1; + else if (readparam(bVit) < 75) + mesc l("The item impact suggests jumping inside will leave you badly wounded."); + else + mesc l("The item impact suggests jumping inside should be safe if you have enough life."); close; // Quest Node @@ -141,7 +148,7 @@ L_Bottle: // Calculate how many iced bottles you'll get .@iced=0; for (.@i=0; .@i < .@count; .@i++) { - if (rand(1,1000) < 11) + if (rand2(1,1000) < 33) .@iced++; } |