diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-27 18:32:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-27 18:32:36 -0300 |
commit | 6c51508bb120a97cfbf00f87734d676629a72df0 (patch) | |
tree | 273d199e7ee46e060033aad8abfa53770cc6d679 /npc/015-2/ben.txt | |
parent | 1fc876e6ffe9c2c3dd39c0d28b379c8209977a0a (diff) | |
download | serverdata-6c51508bb120a97cfbf00f87734d676629a72df0.tar.gz serverdata-6c51508bb120a97cfbf00f87734d676629a72df0.tar.bz2 serverdata-6c51508bb120a97cfbf00f87734d676629a72df0.tar.xz serverdata-6c51508bb120a97cfbf00f87734d676629a72df0.zip |
Remove Increase Carry Weight from Trickmaster and give to Thief rank 3.
This makes Thief utility. I wrote this thinking on Iilia Quest, which CANNOT be
successfuly complete without a thief in your party. (evil laugh).
Diffstat (limited to 'npc/015-2/ben.txt')
-rw-r--r-- | npc/015-2/ben.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/015-2/ben.txt b/npc/015-2/ben.txt index c965131cc..2752aae44 100644 --- a/npc/015-2/ben.txt +++ b/npc/015-2/ben.txt @@ -36,6 +36,7 @@ L_Quest: mesn; mesq l("Congrats! You rank up! You are now a(n) @@!", thiefrank()); if (THIEF_RANK == 2) goto L_Rank2; + if (THIEF_RANK == 3) goto L_Rank3; } else { mesn; mesq l("Well, you need more experience. Keep trying!"); @@ -69,6 +70,17 @@ L_Rank2: mesq l("You must be close to it, and stealing won't change drops! If you fail, just try again! Good luck!"); close; +// Learn INCCARRY +L_Rank3: + skill(ALL_INCCARRY,1,0); + next; + mesn; + mesq l("Now, you'll learn a thief trick! What sort of thief loots so much that they get overweight penalty? That's not cool!"); + next; + mesn; + mesq l("You now gained two extra kilograms to your weight quota! Ka-pow, that's fantastic! Good luck!"); + close; + OnInit: .sex = G_MALE; .distance = 5; |