summaryrefslogtreecommitdiff
path: root/npc/029-1_Candor
diff options
context:
space:
mode:
authorChuck Miller <shadowmil@gmail.com>2010-07-21 22:57:04 -0400
committerChuck Miller <shadowmil@gmail.com>2010-07-22 18:57:49 -0400
commit7922c819d4767ace993441bb27209f858e7bdb68 (patch)
tree007195bb0c39852eb8cf254adb9456cbeb9a8dcc /npc/029-1_Candor
parentdf4e6c4107511d5f533ebe54b710fa6431726300 (diff)
downloadserverdata-7922c819d4767ace993441bb27209f858e7bdb68.tar.gz
serverdata-7922c819d4767ace993441bb27209f858e7bdb68.tar.bz2
serverdata-7922c819d4767ace993441bb27209f858e7bdb68.tar.xz
serverdata-7922c819d4767ace993441bb27209f858e7bdb68.zip
Add the basics for candor
Reviewed-by: Turmfalke
Diffstat (limited to 'npc/029-1_Candor')
-rw-r--r--npc/029-1_Candor/_import.txt5
-rw-r--r--npc/029-1_Candor/_mobs.txt43
-rw-r--r--npc/029-1_Candor/_warps.txt2
-rw-r--r--npc/029-1_Candor/barrier.txt8
-rw-r--r--npc/029-1_Candor/dock.txt6
5 files changed, 64 insertions, 0 deletions
diff --git a/npc/029-1_Candor/_import.txt b/npc/029-1_Candor/_import.txt
new file mode 100644
index 00000000..5f98ab91
--- /dev/null
+++ b/npc/029-1_Candor/_import.txt
@@ -0,0 +1,5 @@
+map: 029-1.gat
+npc: npc/029-1_Candor/_mobs.txt
+npc: npc/029-1_Candor/_warps.txt
+npc: npc/029-1_Candor/barrier.txt
+npc: npc/029-1_Candor/dock.txt
diff --git a/npc/029-1_Candor/_mobs.txt b/npc/029-1_Candor/_mobs.txt
new file mode 100644
index 00000000..32975e8a
--- /dev/null
+++ b/npc/029-1_Candor/_mobs.txt
@@ -0,0 +1,43 @@
+// 029-1 Candor mobs
+
+029-1.gat,68,64,11,13 monster Evil Mushrooms 1013,4,20000,60000,Mob029-1::On1013
+029-1.gat,31,32,12,13 monster Squirrel 1038,3,30000,60000,Mob029-1::On1038
+029-1.gat,46,48,4,1 monster Clover Patch 1037,1,10000,120000,Mob029-1::On1037
+029-1.gat,36,59,22,20 monster Spiky Mushroom 1019,5,10000,30000,Mob029-1::On1019
+029-1.gat,53,35,17,17 monster Bats 1017,4,25000,30000,Mob029-1::On1017
+029-1.gat,59,51,13,9 monster Log heads 1025,2,25000,30000,Mob029-1::On1025
+
+
+029-1.gat,0,0,0 script Mob029-1 -1,{
+On1013:
+ set @mobID, 1013;
+ callfunc "MobPoints";
+ break;
+
+On1017:
+ set @mobID, 1017;
+ callfunc "MobPoints";
+ break;
+
+On1019:
+ set @mobID, 1019;
+ callfunc "MobPoints";
+ break;
+
+On1025:
+ set @mobID, 1025;
+ callfunc "MobPoints";
+ break;
+
+On1037:
+ set @mobID, 1037;
+ callfunc "MobPoints";
+ break;
+
+On1038:
+ set @mobID, 1038;
+ callfunc "MobPoints";
+ break;
+
+ end;
+}
diff --git a/npc/029-1_Candor/_warps.txt b/npc/029-1_Candor/_warps.txt
new file mode 100644
index 00000000..944ed16d
--- /dev/null
+++ b/npc/029-1_Candor/_warps.txt
@@ -0,0 +1,2 @@
+// 029-1 Candor warps
+
diff --git a/npc/029-1_Candor/barrier.txt b/npc/029-1_Candor/barrier.txt
new file mode 100644
index 00000000..cbbecaea
--- /dev/null
+++ b/npc/029-1_Candor/barrier.txt
@@ -0,0 +1,8 @@
+029-1.gat,53,36,0 script #CandorBarrier 127,1,1,{
+ if ($@FIGHT_CAVE_STATUS != 0) goto L_Block;
+ warp "029-3.gat", 47, 22;
+ end;
+
+ L_Block:
+ message strcharinfo(0), "Some force seems to be blocking you from entering.";
+}
diff --git a/npc/029-1_Candor/dock.txt b/npc/029-1_Candor/dock.txt
new file mode 100644
index 00000000..76cc8a16
--- /dev/null
+++ b/npc/029-1_Candor/dock.txt
@@ -0,0 +1,6 @@
+// The ferry dock
+
+029-1.gat,22,37,0 script #candordock 127,2,1,{
+ set @loc, DOCK_candor;
+ callfunc "Ferry";
+}