summaryrefslogtreecommitdiff
path: root/npc/003-1
diff options
context:
space:
mode:
Diffstat (limited to 'npc/003-1')
-rw-r--r--npc/003-1/eugene.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/npc/003-1/eugene.txt b/npc/003-1/eugene.txt
index 4d56647a3..f5c6eb811 100644
--- a/npc/003-1/eugene.txt
+++ b/npc/003-1/eugene.txt
@@ -76,11 +76,40 @@ L_QuestDone:
speech
l("Ahoy, @@!", strcharinfo(0)),
l("Are the fish biting today?");
+
+ switch (select(l("Yes, everything is going great, thank you!"),
+ l("Actually, I have bad luck. Could you sell me a box full of fresh fish?")))
+ {
+ case 1:
+ speech S_FIRST_BLANK_LINE,
+ l("Glad to hear. I swear, the fish I picked before you arrive was THAT big!");
+ close;
+ case 2:
+ speech S_FIRST_BLANK_LINE,
+ l("Earlier I hadn't any, but now that I have the baits, I will be glad to sell some to you!");
+ openshop;
+ closedialog;
+ }
+
close;
OnInit:
+ tradertype(NST_MARKET);
+ sellitem FishBox, 2500, 5;
+ sellitem CommonCarp, -1, 3;
+ sellitem GrassCarp, -1, 1;
+
.sex = G_MALE;
.distance = 12;
end;
+
+OnClock0611:
+OnClock1200:
+OnClock1801:
+OnClock0003:
+ restoreshopitem FishBox, 2500, 5;
+ restoreshopitem CommonCarp, -1, 3;
+ restoreshopitem GrassCarp, -1, 1;
+ end;
}