diff options
Diffstat (limited to 'npc/002-1_Sandstorm/monsters.txt')
-rw-r--r-- | npc/002-1_Sandstorm/monsters.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/npc/002-1_Sandstorm/monsters.txt b/npc/002-1_Sandstorm/monsters.txt new file mode 100644 index 00000000..a98c8406 --- /dev/null +++ b/npc/002-1_Sandstorm/monsters.txt @@ -0,0 +1,24 @@ +// Map: new_1-1 +// This is the Desert (Sandstorm) south of Tulimshar. +// + +new_1-1.gat,0,0,0,0 monster GreenSlime 1005,50,0,0,Mob1::OnGreenSlime +new_1-1.gat,0,0,0,0 monster GiantMaggot 1006,30,0,0,Mob1::OnGiantMaggot +new_1-1.gat,0,0,0,0 monster RedScorpion 1004,20,0,0,Mob1::OnRedScorpion + +new_1-1.gat,0,0,0 script Mob1 -1,{ +OnGreenSlime: + set @mobID, 1005; + callfunc "MobPoints"; + break; + +OnGiantMaggot: + set @mobID, 1006; + callfunc "MobPoints"; + break; + +OnRedScorpion: + set @mobID, 1004; + callfunc "MobPoints"; + break; +} |