1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Map: new_21-1
// This is the second level of the Ice Cave beneath Snow Town.
//
new_21-1.gat,0,0,0,0 monster Bat 1017,5,0,0,Mob21::OnBat
new_21-1.gat,0,0,0,0 monster Fluffy 1020,15,0,0,Mob21::OnFluffy
new_21-1.gat,0,0,0 script Mob21 -1,{
OnBat:
set @mobID, 1017;
callfunc "MobPoints";
break;
OnFluffy:
set @mobID, 1020;
callfunc "MobPoints";
break;
end;
}
|