summaryrefslogtreecommitdiff
path: root/npc/007-1_Woodland/monsters.txt
blob: 8be691b397110a3f0c6288e30e6d149cdd403d2c (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
25
26
27
28
29
30
31
32
33
34
35
// Map: 007-1
// This is South-East Woodland.
//

007-1.gat,0,0,0,0	monster	Fluffy	1020,50,0,0,Mob16::OnFluffy
007-1.gat,0,0,0,0	monster	Flower	1014,40,0,0,Mob16::OnFlower

007-1.gat,0,0,0,0	monster	Gamboge	1031,1,2700000,1800000,Mob16::OnGamboge

007-1.gat,0,0,0,0	monster	SilkWorm	1035,2,60000,30000,Mob16::OnSilkWorm

007-1.gat,0,0,0	script	Mob16	-1,{
OnFluffy:
	set @mobID, 1020;
	callfunc "MobPoints";
	break;

OnFlower:
	set @mobID, 1014;
	callfunc "MobPoints";
	break;

OnGamboge:
	set @mobID, 1031;
	callfunc "MobPoints";
	break;

OnSilkWorm:
	set @mobID, 1035;
	callfunc "MobPoints";
	break;


	end;
}