diff options
Diffstat (limited to 'npc/new_2-1-cave1/monsters.txt')
-rw-r--r-- | npc/new_2-1-cave1/monsters.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/npc/new_2-1-cave1/monsters.txt b/npc/new_2-1-cave1/monsters.txt new file mode 100644 index 00000000..b673ef65 --- /dev/null +++ b/npc/new_2-1-cave1/monsters.txt @@ -0,0 +1,20 @@ +// Map: new_2-1 +// This is the Desert mines south of Tulimshar -- level 1. +// + +new_2-1.gat,0,0,0,0 monster RedSlime 1008,30,2500,0,Mob2::OnRedSlime +new_2-1.gat,0,0,0,0 monster BlackScorpion 1009,15,2500,0,Mob2::OnBlackScorpion + +new_2-1.gat,0,0,0 script Mob2 -1,{ +OnRedSlime: + set @mobID, 1008; + callfunc "MobPoints"; + break; + +OnBlackScorpion: + set @mobID, 1009; + callfunc "MobPoints"; + break; + + end; +} |