summaryrefslogtreecommitdiff
path: root/npc/new_11-1-snow-village
diff options
context:
space:
mode:
Diffstat (limited to 'npc/new_11-1-snow-village')
-rw-r--r--npc/new_11-1-snow-village/amrak.txt17
-rw-r--r--npc/new_11-1-snow-village/monsters.txt14
-rw-r--r--npc/new_11-1-snow-village/passages.txt13
-rw-r--r--npc/new_11-1-snow-village/sexchanger.txt27
-rw-r--r--npc/new_11-1-snow-village/soul-menhir.txt6
-rw-r--r--npc/new_11-1-snow-village/startrek.txt18
6 files changed, 95 insertions, 0 deletions
diff --git a/npc/new_11-1-snow-village/amrak.txt b/npc/new_11-1-snow-village/amrak.txt
new file mode 100644
index 00000000..3717685f
--- /dev/null
+++ b/npc/new_11-1-snow-village/amrak.txt
@@ -0,0 +1,17 @@
+//
+
+new_11-1.gat,66,90,0 script Amrak 103, {
+ mes "[Amrak]";
+ mes "\"This... stone...";
+ mes "I have never seen a mineral like this";
+ mes "before.";
+ mes "And some strange... aura... seems to";
+ mes "emit from it.\"";
+ next;
+ mes "[Amrak]";
+ mes "\"Where did it come from?";
+ mes "How did it got here?";
+ mes "What's its purpose?";
+ mes "I will solve its riddle for sure.\"";
+ close;
+}
diff --git a/npc/new_11-1-snow-village/monsters.txt b/npc/new_11-1-snow-village/monsters.txt
new file mode 100644
index 00000000..92c95f81
--- /dev/null
+++ b/npc/new_11-1-snow-village/monsters.txt
@@ -0,0 +1,14 @@
+// Map: new_11-1
+// This is Snow Town.
+//
+
+new_11-1.gat,56,63,1,1 monster Maggot 1002,2,0,0,Mob11::OnMaggot
+
+new_11-1.gat,0,0,0 script Mob11 -1,{
+OnMaggot:
+ set @mobID, 1002;
+ callfunc "MobPoints";
+ break;
+
+ end;
+}
diff --git a/npc/new_11-1-snow-village/passages.txt b/npc/new_11-1-snow-village/passages.txt
new file mode 100644
index 00000000..b42939ec
--- /dev/null
+++ b/npc/new_11-1-snow-village/passages.txt
@@ -0,0 +1,13 @@
+new_11-1.gat,76,38 warp tocave 0,0,new_12-1.gat,31,28
+new_11-1.gat,69,128 warp tomap 3,0,new_10-1.gat,69,21
+
+// outside -> Clothes shop
+new_11-1.gat,47,49 warp inside1 0,0,new_13-1.gat,25,33
+// outside -> Potions shop
+new_11-1.gat,57,90 warp inside2 0,0,new_13-1.gat,66,25
+// outside -> INN
+new_11-1.gat,64,83 warp inside3 0,0,new_13-1.gat,111,30
+// outside -> Weapons shop
+new_11-1.gat,87,47 warp inside4 0,0,new_13-1.gat,32,71
+// outside -> House
+new_11-1.gat,66,53 warp inside5 0,0,new_13-1.gat,72,68 \ No newline at end of file
diff --git a/npc/new_11-1-snow-village/sexchanger.txt b/npc/new_11-1-snow-village/sexchanger.txt
new file mode 100644
index 00000000..b26f9e14
--- /dev/null
+++ b/npc/new_11-1-snow-village/sexchanger.txt
@@ -0,0 +1,27 @@
+new_11-1.gat,50,49,0 script Xanith 136,{
+ mes "[Xanith the Surgeon]";
+ mes "\"No sex changes right now, sorry.\"";
+ close;
+
+ mes "[Xanith the Surgeon]";
+ mes "\"Are you tired of being what you are?\"";
+ next;
+
+ mes "[Xanith the Surgeon]";
+ mes "\"Would you maybe be interested in a sex change?\"";
+ next;
+
+ mes "[Server]";
+ mes "\"Warning: All the character in your account will get the sex changed.\"";
+ mes "\"Also you probably will require to restart the client to notice a change.\"";
+ next;
+
+ menu
+ "Please do, my dear...", L_Change,
+ "Leave alone my family treasure!", -;
+ close;
+
+L_Change:
+// changesex;
+ close;
+}
diff --git a/npc/new_11-1-snow-village/soul-menhir.txt b/npc/new_11-1-snow-village/soul-menhir.txt
new file mode 100644
index 00000000..e88a70cd
--- /dev/null
+++ b/npc/new_11-1-snow-village/soul-menhir.txt
@@ -0,0 +1,6 @@
+new_11-1.gat,64,89,0 script Soul Menhir 144, {
+ set @map$, "new_11-1.gat";
+ set @x, 64;
+ set @y, 90;
+ callfunc "SoulMenhir";
+}
diff --git a/npc/new_11-1-snow-village/startrek.txt b/npc/new_11-1-snow-village/startrek.txt
new file mode 100644
index 00000000..72afe5e3
--- /dev/null
+++ b/npc/new_11-1-snow-village/startrek.txt
@@ -0,0 +1,18 @@
+new_11-1.gat,79,77,0 script Kirk 133,{
+ mes "[Capt. Kirk]";
+ mes "\"Spock: We're breaking the prime directive.";
+ mes "This is not the right way to have the first contact.\"";
+ close;
+}
+
+new_11-1.gat,81,77,0 script Spock 134,{
+ mes "[Spock]";
+ mes "\"Live long and prosper captain.\"";
+ next;
+
+ mes "[Spock]";
+ mes "\"trr...Spock to Scotty...";
+ mes "Beam me to the elves village...";
+ mes "I will hide there.\"";
+ close;
+}