diff options
Diffstat (limited to 'npc/003-0-1')
-rw-r--r-- | npc/003-0-1/maxime.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/npc/003-0-1/maxime.txt b/npc/003-0-1/maxime.txt index 695999f50..5ca4d7efc 100644 --- a/npc/003-0-1/maxime.txt +++ b/npc/003-0-1/maxime.txt @@ -17,7 +17,7 @@ mesc l("@@/3 @@", countitem(ScorpionStinger), getitemlink(ScorpionStinger)); mesc l("@@/2 @@", countitem(CactusDrink), getitemlink(CactusDrink)); mesc l("@@/1 @@", countitem(RoastedMaggot), getitemlink(RoastedMaggot)); - mesc l("@@/150 GP", format_number(Zeny)); + mesc l("@@/120 GP", format_number(Zeny)); next; select l("I have the items, please bake for me"), @@ -35,9 +35,11 @@ countitem(ScorpionStinger) < 3 || countitem(CactusDrink) < 2 || countitem(RoastedMaggot) < 1 || - Zeny < 150) goto L_Missing; + Zeny < 120) goto L_Missing; // 4~7 normaly, 5~10 during Summer + // Xanthem Patch: +20% craft and -20% effect + // New values: 5~9 normal or 6~12 during Summer inventoryplace TonoriDelight, 12; delitem MaggotSlime, 12; delitem Plushroom, 8; @@ -45,12 +47,12 @@ delitem ScorpionStinger, 3; delitem CactusDrink, 2; delitem RoastedMaggot, 1; - getitem TonoriDelight, rand(4,7); + getitem TonoriDelight, rand(5,9); if (season() == SUMMER) { getitem TonoriDelight, rand(1,3); mesc l("During summer, more Tonori Delight can be produced."); } - Zeny=Zeny-150; + Zeny=Zeny-120; getexp rand(30, 60), 0; mesn; |