diff options
Diffstat (limited to 'npc/012-1/guards.txt')
-rw-r--r-- | npc/012-1/guards.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/npc/012-1/guards.txt b/npc/012-1/guards.txt index 6cb5a7aba..7ea1f27e4 100644 --- a/npc/012-1/guards.txt +++ b/npc/012-1/guards.txt @@ -100,6 +100,36 @@ L_Assign: Zeny=Zeny+@fc*15+@fc; mesc l("* Gained @@ EXP and @@ Job Exp", @xp, @fc*3); mesc l("* Gained @@ GP", @fc*15+@fc); + // Welcome to the stupid table + if (@fc >= 10) { + switch (@fc) { + case 10: + .@tea=Coffee; .@gift=BronzeGift; .@rare=Grenade; + break; + case 11: + .@tea=ChamomileTea; .@gift=SilverGift; .@rare=WhiskeyAle; + break; + case 12: + .@tea=SpearmintTea; .@gift=SilverGift; .@rare=PrecisionPotion; + break; + case 13: + .@tea=OolongTea; .@gift=GoldenGift; .@rare=SacredLifePotion; + break; + case 14: + .@tea=JasmineTea; .@gift=GoldenGift; .@rare=AncientBlueprint; + break; + default: // 15+ + .@tea=YerbaMate; .@gift=PrismGift; .@rare=MysteriousFruit; + break; + } + mesc l("For being on the extended, you got:"); + mesf("* %d %s", 1, getitemlink(.@tea)); + mesf("* %d %s", 1, getitemlink(.@gift)); + mesf("##B* %d %s##b", 1, getitemlink(.@rare)); + getitem .@rare, 1; + getitem .@gift, 1; + getitem .@tea, 1; + } close; } // Assign quest |