diff options
Diffstat (limited to 'npc/002-4/nard.txt')
-rw-r--r-- | npc/002-4/nard.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/002-4/nard.txt b/npc/002-4/nard.txt index d3c36e0df..58f63e8a8 100644 --- a/npc/002-4/nard.txt +++ b/npc/002-4/nard.txt @@ -12,7 +12,7 @@ showavatar NPC_NARD; // this is handled by avatars.xml .@narrator = getq(General_Narrator); - .@price=1500; + .@price=1200; L_Checker: if (.@narrator) goto L_Travel; @@ -209,17 +209,17 @@ L_NotYet: L_Travel: if (nard_reputation() >= 15) - .@price-=1400; + .@price-=1150; else if (nard_reputation() >= 13) - .@price-=1250; - else if (nard_reputation() >= 11) .@price-=1000; - else if (nard_reputation() >= 9) + else if (nard_reputation() >= 11) .@price-=750; + else if (nard_reputation() >= 9) + .@price-=600; else if (nard_reputation() >= 7) - .@price-=500; + .@price-=350; else if (nard_reputation() >= 5) - .@price-=250; + .@price-=200; mesn; mesq l("Hi @@.", strcharinfo(0)); next; |