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_31-1-southwest-woodland/monsters.txt | |
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_31-1-southwest-woodland/monsters.txt')
-rw-r--r-- | npc/new_31-1-southwest-woodland/monsters.txt | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/npc/new_31-1-southwest-woodland/monsters.txt b/npc/new_31-1-southwest-woodland/monsters.txt new file mode 100644 index 00000000..ba9d7c2e --- /dev/null +++ b/npc/new_31-1-southwest-woodland/monsters.txt @@ -0,0 +1,46 @@ +// Map: new_31-1
+// This is South-West Woodland.
+//
+
+new_31-1.gat,0,0,0,0 monster LogHead 1025,40,0,0,Mob31::OnLogHead
+new_31-1.gat,0,0,0,0 monster SpikyMushroom 1019,20,0,0,Mob31::OnSpikyMushroom
+new_31-1.gat,0,0,0,0 monster Flower 1014,20,0,0,Mob31::OnFlower
+
+new_31-1.gat,0,0,0,0 monster Gamboge 1031,3,0,0,Mob31::OnGamboge
+new_31-1.gat,0,0,0,0 monster Alizarin 1032,3,0,0,Mob31::OnAlizarin
+
+new_31-1.gat,0,0,0,0 monster SilkWorm 1035,7,15000,7000,Mob31::onSilkWorm
+
+new_31-1.gat,0,0,0 script Mob31 -1,{
+OnLogHead:
+ set @mobID, 1025;
+ callfunc "MobPoints";
+ break;
+
+OnSpikyMushroom:
+ set @mobID, 1019;
+ callfunc "MobPoints";
+ break;
+
+OnFlower:
+ set @mobID, 1014;
+ callfunc "MobPoints";
+ break;
+
+OnGamboge:
+ set @mobID, 1031;
+ callfunc "MobPoints";
+ break;
+
+OnAlizarin:
+ set @mobID, 1032;
+ callfunc "MobPoints";
+ break;
+
+OnSilkWorm:
+ set @mobID, 1035;
+ callfunc "MobPoints";
+ break;
+
+ end;
+}
|