summaryrefslogtreecommitdiff
path: root/npc/new_17-1-cave-big/monsters.txt
blob: 43c0c2640ab42234037e359106c927400a27be12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Map: new_17-1
// This is the Lake Cave, second level of the Hermit's Cave.
//

new_17-1.gat,0,0,0,0	monster	CaveSnake	1021,40,0,0,Mob17::OnCaveSnake
new_17-1.gat,0,0,0,0	monster	SpikyMushroom	1019,15,0,0,Mob17::OnSpikyMushroom

new_17-1.gat,0,0,0	script	Mob17	-1,{
OnCaveSnake:
	set @mobID, 1021;
	callfunc "MobPoints";
	break;

OnSpikyMushroom:
	set @mobID, 1019;
	callfunc "MobPoints";
	break;

	end;
}