summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Hulka <sean.hulka@gmail.com>2020-02-08 01:35:43 +0000
committerSean Hulka <sean.hulka@gmail.com>2020-02-08 01:35:43 +0000
commit2905fc700d0eff472fd784f6b798193f55170348 (patch)
treebf984718230f735c145aa9fdabb12eaa4e2a7537
parent44c543ff3f8462146fb41e82ccc527806e812451 (diff)
downloadserverdata-DuckElderNPC.tar.gz
serverdata-DuckElderNPC.tar.bz2
serverdata-DuckElderNPC.tar.xz
serverdata-DuckElderNPC.zip
Added duck elder (Legacy script to be fixed later)DuckElderNPC
-rw-r--r--npc/018-5-4/_import.txt1
-rw-r--r--npc/018-5-4/duck_elder.txt45
2 files changed, 46 insertions, 0 deletions
diff --git a/npc/018-5-4/_import.txt b/npc/018-5-4/_import.txt
index 1355ed21b..cef24909d 100644
--- a/npc/018-5-4/_import.txt
+++ b/npc/018-5-4/_import.txt
@@ -2,4 +2,5 @@
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/018-5-4/_mobs.txt",
"npc/018-5-4/_warps.txt",
+"npc/018-5-4/duck_elder.txt",
"npc/018-5-4/mapflags.txt",
diff --git a/npc/018-5-4/duck_elder.txt b/npc/018-5-4/duck_elder.txt
new file mode 100644
index 000000000..4080e5309
--- /dev/null
+++ b/npc/018-5-4/duck_elder.txt
@@ -0,0 +1,45 @@
+// TMW2 Script
+// Author:
+// dangerDuck
+// Description:
+// Duck Elder is a friendly npc. May eventually implement a quest that needs Duck Feathers
+// Variable:
+// none
+
+018-5,28,73,0 script Duck Elder NPC_DUCK_ELDER,{
+ mesn;
+ mesq l("Hello %s. What brings you here?", get_race());
+ mes "";
+ menu
+ l("Oh, I'm just exploring. What can you tell me about this island?"),L_About,
+ l("I came to enjoy a beautiful day with some ducks!"),L_Close;
+
+L_About:
+ mesn;
+ mesq l("This is Duck Island, the last safe refuge for birds. Ducks tend to be very peaceful, but our young ruler, King DD, has been taken up with the art of war.");
+ mesn;
+ mesq l("Unfortunately, he has been corrupted by the terrorist organization calling itself S.A.R.A.H. Hopefully, he will return to the ways of peace and bring prosperity to Duck Island once again.");
+ mes "";
+ menu
+ l("What's S.A.R.A.H.?"),L_About2,
+ l("Thanks, I think I'll continue exploring."),L_Close;
+
+L_About2:
+ mesn;
+ mesq l("As I said, S.A.R.A.H. is a terrorist organization. They are dedicated to wiping out every single duck, worldwide. No duck has ever survived an encounter with a S.A.R.A.H. agent. You would do best to avoid them.");
+ mesn;
+ mesq l("I suggest you leave now, %s. If you are even suspected of being a S.A.R.A.H. agent . . .", get_race());
+ close;
+
+L_Close:
+ mesn;
+ mesq l("Enjoy your time here, %s. And keep your eye out for agents of S.A.R.A.H.", get_race());
+ mesn;
+ mesq l("Perhaps you may be of assistance later . . .");
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 4;
+ end;
+}