summaryrefslogtreecommitdiff
path: root/npc/099-7
diff options
context:
space:
mode:
Diffstat (limited to 'npc/099-7')
-rw-r--r--npc/099-7/_import.txt1
-rw-r--r--npc/099-7/cronos.txt19
2 files changed, 20 insertions, 0 deletions
diff --git a/npc/099-7/_import.txt b/npc/099-7/_import.txt
index e284d5dd..998db4ea 100644
--- a/npc/099-7/_import.txt
+++ b/npc/099-7/_import.txt
@@ -1,3 +1,4 @@
// Map 099-7: Ruined Swamps
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/099-7/boss.txt",
+"npc/099-7/cronos.txt",
diff --git a/npc/099-7/cronos.txt b/npc/099-7/cronos.txt
new file mode 100644
index 00000000..8aa6985c
--- /dev/null
+++ b/npc/099-7/cronos.txt
@@ -0,0 +1,19 @@
+// Cronos, the lord of time and apparently a shopkeeper
+// There's also Father Time in the GM stuff
+
+099-7,99,30,0 script Chronos NPC313,{
+ mesn;
+ mesq l("I'm Chronos, lord of time, the immortal, the... Alright, let's forget that.");
+ if (BOSS_POINTS < .price)
+ close;
+ // Boss Points validation
+ .@cur=(BOSS_POINTS % .price);
+ mesc l("All things shall pass, but with the limited time you have, please enjoy shopkeeping.");
+ close;
+
+OnInit:
+ .distance=4;
+ .price=10000;
+ end;
+}
+