summaryrefslogtreecommitdiff
path: root/npc/new_14-1-south-woodland/monsters.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/new_14-1-south-woodland/monsters.txt')
-rw-r--r--npc/new_14-1-south-woodland/monsters.txt40
1 files changed, 0 insertions, 40 deletions
diff --git a/npc/new_14-1-south-woodland/monsters.txt b/npc/new_14-1-south-woodland/monsters.txt
deleted file mode 100644
index f371e497..00000000
--- a/npc/new_14-1-south-woodland/monsters.txt
+++ /dev/null
@@ -1,40 +0,0 @@
-// Map: new_14-1
-// This is South Woodland.
-//
-
-new_14-1.gat,0,0,0,0 monster Scorpion 1003,50,0,0,Mob14::OnScorpion
-new_14-1.gat,0,0,0,0 monster SpikyMushroom 1019,50,0,0,Mob14::OnSpikyMushroom
-new_14-1.gat,0,0,0,0 monster LogHead 1025,50,0,0,Mob14::OnLogHead
-
-new_14-1.gat,0,0,0,0 monster Cobalt 1030,1,2700000,1800000,Mob14::OnCobalt
-
-new_14-1.gat,0,0,0,0 monster SilkWorm 1035,2,60000,30000,Mob14::OnSilkWorm
-
-new_14-1.gat,0,0,0 script Mob14 -1,{
-OnScorpion:
- set @mobID, 1003;
- callfunc "MobPoints";
- break;
-
-OnSpikyMushroom:
- set @mobID, 1019;
- callfunc "MobPoints";
- break;
-
-OnLogHead:
- set @mobID, 1025;
- callfunc "MobPoints";
- break;
-
-OnCobalt:
- set @mobID, 1030;
- callfunc "MobPoints";
- break;
-
-OnSilkWorm:
- set @mobID, 1035;
- callfunc "MobPoints";
- break;
-
- end;
-}