diff options
author | Jared Adams <jaxad0127@gmail.com> | 2008-11-02 22:45:17 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2008-11-02 22:45:17 +0000 |
commit | ec9be0a2967b38955d26e337b05bc3a042ac4544 (patch) | |
tree | e1ef509c78c8a3fe777b4adb0f4c650364fa55cb /npc/new_37-1-woodland-mine | |
parent | 2fd04617279829d54349b325bacb4c72addebfe4 (diff) | |
download | serverdata-ec9be0a2967b38955d26e337b05bc3a042ac4544.tar.gz serverdata-ec9be0a2967b38955d26e337b05bc3a042ac4544.tar.bz2 serverdata-ec9be0a2967b38955d26e337b05bc3a042ac4544.tar.xz serverdata-ec9be0a2967b38955d26e337b05bc3a042ac4544.zip |
Branch data for eAthena
Diffstat (limited to 'npc/new_37-1-woodland-mine')
-rw-r--r-- | npc/new_37-1-woodland-mine/miners.txt | 6 | ||||
-rw-r--r-- | npc/new_37-1-woodland-mine/monsters.txt | 39 | ||||
-rw-r--r-- | npc/new_37-1-woodland-mine/passages.txt | 5 |
3 files changed, 50 insertions, 0 deletions
diff --git a/npc/new_37-1-woodland-mine/miners.txt b/npc/new_37-1-woodland-mine/miners.txt new file mode 100644 index 00000000..99bba7fb --- /dev/null +++ b/npc/new_37-1-woodland-mine/miners.txt @@ -0,0 +1,6 @@ +// + +new_37-1.gat,78,59,0 script Miner 109,1,1,{ + mes "[Miner]"; + mes "\"I'm sorry, but this area is closed off.\""; +} diff --git a/npc/new_37-1-woodland-mine/monsters.txt b/npc/new_37-1-woodland-mine/monsters.txt new file mode 100644 index 00000000..d38d2695 --- /dev/null +++ b/npc/new_37-1-woodland-mine/monsters.txt @@ -0,0 +1,39 @@ +// Map: new_37-1 +// This is the Woodland Mines. +// + +new_37-1.gat,0,0,0,0 monster LogHead 1025,5,500,600,Mob37::OnLogHead +new_37-1.gat,136,77,20,35 monster SeaSlime 1033,5,1000,500,Mob37::OnSeaSlime +new_37-1.gat,0,0,0,0 monster Bat 1017,2,4000,3000,Mob37::OnBat +new_37-1.gat,79,59,0,0 monster YellowSlime 1007,1,120000,60000,Mob37::OnYellowSlime + +new_37-1.gat,57,63,4,4 monster SilkWorm 1035,2,60000,30000,Mob37::OnSilkWorm + +new_37-1.gat,0,0,0 script Mob37 -1,{ +OnLogHead: + set @mobID, 1025; + callfunc "MobPoints"; + break; + +OnSeaSlime: + set @mobID, 1033; + callfunc "MobPoints"; + break; + +OnBat: + set @mobID, 1017; + callfunc "MobPoints"; + break; + +OnYellowSlime: + set @mobID, 1007; + callfunc "MobPoints"; + break; + +OnSilkWorm: + set @mobID, 1035; + callfunc "MobPoints"; + break; + + end; +} diff --git a/npc/new_37-1-woodland-mine/passages.txt b/npc/new_37-1-woodland-mine/passages.txt new file mode 100644 index 00000000..937406ee --- /dev/null +++ b/npc/new_37-1-woodland-mine/passages.txt @@ -0,0 +1,5 @@ +// To village
+new_37-1.gat,79,97 warp woodland 2,-1,new_18-1.gat,78,18
+
+// To camp building
+new_37-1.gat,65,73 warp inside -1,-1,new_38-1.gat,50,27
|