diff options
Diffstat (limited to 'npc/015-2')
-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; |