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