summaryrefslogtreecommitdiff
path: root/npc/new_27-1-hill2/monsters.txt
blob: 2121f59418cbe5f2c3eee31ecdb7055187ef324e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Map: new_27-1
// This is the Caves beneath the North Woodland.
//

new_27-1.gat,0,0,0,0	monster	Bat		1017,100,0,0,Mob27::OnBat
new_27-1.gat,0,0,0,0	monster	CaveSnake	1021,75,0,0,Mob27::OnCaveSnake

new_27-1.gat,0,0,0	script	Mob27	-1,{
OnBat:
	set @mobID, 1017;
	callfunc "MobPoints";
	break;

OnCaveSnake:
	set @mobID, 1021;
	callfunc "MobPoints";
	break;

	end;
}