summaryrefslogtreecommitdiff
path: root/npc/002-1_Sandstorm/monsters.txt
blob: 397833820a63e461544717bdf67ab9d126750a3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Map: 002-2
// This is the Desert (Sandstorm) south of Tulimshar.
//

002-1.gat,0,0,0,0	monster	GreenSlime	1005,50,0,0,Mob1::OnGreenSlime
002-1.gat,0,0,0,0	monster	GiantMaggot	1006,30,0,0,Mob1::OnGiantMaggot
002-1.gat,0,0,0,0	monster	RedScorpion	1004,20,0,0,Mob1::OnRedScorpion

002-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;
}