1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// Map: 015-1
// This is South-West Woodland.
//
015-1.gat,0,0,0,0 monster LogHead 1025,40,0,0,Mob31::OnLogHead
015-1.gat,0,0,0,0 monster SpikyMushroom 1019,20,0,0,Mob31::OnSpikyMushroom
015-1.gat,0,0,0,0 monster Flower 1014,20,0,0,Mob31::OnFlower
015-1.gat,0,0,0,0 monster Gamboge 1031,3,0,0,Mob31::OnGamboge
015-1.gat,0,0,0,0 monster Alizarin 1032,3,0,0,Mob31::OnAlizarin
015-1.gat,0,0,0,0 monster SilkWorm 1035,7,15000,7000,Mob31::onSilkWorm
015-1.gat,0,0,0 script Mob31 -1,{
OnLogHead:
set @mobID, 1025;
callfunc "MobPoints";
break;
OnSpikyMushroom:
set @mobID, 1019;
callfunc "MobPoints";
break;
OnFlower:
set @mobID, 1014;
callfunc "MobPoints";
break;
OnGamboge:
set @mobID, 1031;
callfunc "MobPoints";
break;
OnAlizarin:
set @mobID, 1032;
callfunc "MobPoints";
break;
OnSilkWorm:
set @mobID, 1035;
callfunc "MobPoints";
break;
end;
}
|