summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/constants.conf1
-rw-r--r--db/quest_db.conf5
-rw-r--r--npc/012-1/_import.txt1
-rw-r--r--npc/012-1/milly.txt17
4 files changed, 23 insertions, 1 deletions
diff --git a/db/constants.conf b/db/constants.conf
index d878ba5be..5c859aac7 100644
--- a/db/constants.conf
+++ b/db/constants.conf
@@ -3983,6 +3983,7 @@ constants_db: {
NPC_HALBERDBARBARIAN: 185
NPC_SCORPIONKINGLANCE: 186
NPC_LIGHTBRINGER: 187
+ NPC_TEDDYGIRL: 188
// LoF Non Animated NPCs
NPC_FORTIUN: 200
diff --git a/db/quest_db.conf b/db/quest_db.conf
index 8234ad192..56e0fc712 100644
--- a/db/quest_db.conf
+++ b/db/quest_db.conf
@@ -65,7 +65,10 @@ quest_db: (
},
// ID 11 to 30: General quests
-// ID 11 is free
+{
+ Id: 11
+ Name: "General_Milly"
+},
{
Id: 12
Name: "General_Narrator"
diff --git a/npc/012-1/_import.txt b/npc/012-1/_import.txt
index 996713e95..c6acc50ba 100644
--- a/npc/012-1/_import.txt
+++ b/npc/012-1/_import.txt
@@ -14,6 +14,7 @@
"npc/012-1/luffyx.txt",
"npc/012-1/mahad.txt",
"npc/012-1/mapflags.txt",
+"npc/012-1/milly.txt",
"npc/012-1/richard.txt",
"npc/012-1/ship.txt",
"npc/012-1/shoppakep.txt",
diff --git a/npc/012-1/milly.txt b/npc/012-1/milly.txt
new file mode 100644
index 000000000..5bacbdcaf
--- /dev/null
+++ b/npc/012-1/milly.txt
@@ -0,0 +1,17 @@
+// TMW2 script.
+// Authors:
+// Jesusalva
+// Description:
+// World's Hero quest
+
+012-1,111,66,0 script Milly NPC_TEDDYGIRL,{
+ mesn;
+ mesq l("Hello.");
+ close;
+
+OnInit:
+ .sex=G_FEMALE;
+ .distance=5;
+ end;
+}
+