diff options
Diffstat (limited to 'world/map/npc/009-2')
-rw-r--r-- | world/map/npc/009-2/trader.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/world/map/npc/009-2/trader.txt b/world/map/npc/009-2/trader.txt index a872117c..bcdc5d75 100644 --- a/world/map/npc/009-2/trader.txt +++ b/world/map/npc/009-2/trader.txt @@ -88,7 +88,7 @@ L_Healpots: L_Eamulet: mes "[Trader]"; - mes "\"These amulets are quite rare. Three times as rare as a Magic Ring, they say. I do have one though and would trade it off for three Magic Rings and thirteen Blood Stones. I've had a hard time finding those stones.\""; + mes "\"These amulets are quite rare. Two times as rare as a Magic Ring, they say. I do have one though and would trade it off for two Magic Rings and thirteen Blood Stones. I've had a hard time finding those stones.\""; menu "Alright.", L_GetEamuletConfirm, "I'd better check the shops out first.", L_Close; @@ -144,9 +144,9 @@ L_GetEamuletConfirm: "Yes, I'm positive.", L_GetEamulet; L_GetEamulet: - if (countitem("MagicRing") < 3) goto L_Missing; + if (countitem("MagicRing") < 2) goto L_Missing; if (countitem("Bloodstone") < 13) goto L_Missing; - delitem "MagicRing", 3; + delitem "MagicRing", 2; delitem "Bloodstone", 13; getitem "EnchantersAmulet", 1; mes "[Trader]"; |