summaryrefslogtreecommitdiff
path: root/npc/011-6/_mobs.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/011-6/_mobs.txt')
-rw-r--r--npc/011-6/_mobs.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/npc/011-6/_mobs.txt b/npc/011-6/_mobs.txt
index dda63569..9b6fc0a5 100644
--- a/npc/011-6/_mobs.txt
+++ b/npc/011-6/_mobs.txt
@@ -1,7 +1,31 @@
// 011-6 mobs
+011-6.gat,0,0,0,0 monster Spiky Mushroom 1019,30,30000,100000,Mob011-6::On1019
+011-6.gat,0,0,0,0 monster Evil Mushroom 1013,15,30000,100000,Mob011-6::On1013
+011-6.gat,115,79,191,110 monster Bandit 1063,8,30000,100000,Mob011-6::On1063
+011-6.gat,0,0,0,0 monster Bat 1017,30,30000,100000,Mob011-6::On1017
011-6.gat,0,0,0 script Mob011-6 -1,{
+On1013:
+ set @mobID, 1013;
+ callfunc "MobPoints";
+ break;
+
+On1017:
+ set @mobID, 1017;
+ callfunc "MobPoints";
+ break;
+
+On1019:
+ set @mobID, 1019;
+ callfunc "MobPoints";
+ break;
+
+On1063:
+ set @mobID, 1063;
+ callfunc "MobPoints";
+ break;
+
end;
}