summaryrefslogtreecommitdiff
path: root/npc/new_12-1-ice-cave/monsters.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/new_12-1-ice-cave/monsters.txt')
-rw-r--r--npc/new_12-1-ice-cave/monsters.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/npc/new_12-1-ice-cave/monsters.txt b/npc/new_12-1-ice-cave/monsters.txt
new file mode 100644
index 00000000..2cce49b2
--- /dev/null
+++ b/npc/new_12-1-ice-cave/monsters.txt
@@ -0,0 +1,20 @@
+// Map: new_12-1
+// This is the Ice Cave below Snow Town.
+//
+
+new_12-1.gat,0,0,0,0 monster Bat 1017,20,0,0,Mob12::OnBat
+new_12-1.gat,0,0,0,0 monster Pinkie 1018,10,0,0,Mob12::OnPinkie
+
+new_12-1.gat,0,0,0 script Mob12 -1,{
+OnBat:
+ set @mobID, 1017;
+ callfunc "MobPoints";
+ break;
+
+OnPinkie:
+ set @mobID, 1018;
+ callfunc "MobPoints";
+ break;
+
+ end;
+}