summaryrefslogtreecommitdiff
path: root/npc/003-1
diff options
context:
space:
mode:
Diffstat (limited to 'npc/003-1')
-rw-r--r--npc/003-1/sarah.txt3
-rw-r--r--npc/003-1/swezanne.txt6
2 files changed, 6 insertions, 3 deletions
diff --git a/npc/003-1/sarah.txt b/npc/003-1/sarah.txt
index 38fd2876b..44f473d57 100644
--- a/npc/003-1/sarah.txt
+++ b/npc/003-1/sarah.txt
@@ -38,7 +38,8 @@
// Quest completed
function quest_completed {
if (getq2(TulimsharQuest_Sarah) != gettimeparam(GETTIME_DAYOFMONTH)) {
- .@price = getiteminfo(CherryCake, ITEMINFO_SELLPRICE) * 4;
+ // Reward base is the same as Eugene: 1× + 500%
+ .@price = getiteminfo(CherryCake, ITEMINFO_SELLPRICE) * 6;
mesn;
mesq l("Hey, I remember you! You brought me cake the other day!");
next;
diff --git a/npc/003-1/swezanne.txt b/npc/003-1/swezanne.txt
index 8e40d6393..ea3257b63 100644
--- a/npc/003-1/swezanne.txt
+++ b/npc/003-1/swezanne.txt
@@ -66,13 +66,15 @@ L_Repeat:
L_Finish2:
delitem CactusPotion, 5;
getexp 37, 0;
- Zeny = (Zeny + 350); // 5*35 = 175 base (+100%)
+ // Bonus: +400%
+ .@price = getiteminfo(CactusPotion, ITEMINFO_SELLPRICE) * 5 * 4;
+ Zeny += .@price;
.@q3=getq3(TulimsharQuest_Swezanne)+1;
setq2 TulimsharQuest_Swezanne, gettimetick(2)+60*60*24;
setq3 TulimsharQuest_Swezanne, .@q3;
if (!(.@q3 % 30)) {
//inventoryplace MercCard_Swezanne, 1;
- getitem MercCard_Swezanne, 1;
+ getitem MercCard_Swezanne, 10;
mesn;
mesq l("Thanks for helping me this month. Here is my card, just call me if you need.");
}