summaryrefslogtreecommitdiff
path: root/npc/015-1_Woodland
diff options
context:
space:
mode:
Diffstat (limited to 'npc/015-1_Woodland')
-rw-r--r--npc/015-1_Woodland/monsters.txt17
1 files changed, 15 insertions, 2 deletions
diff --git a/npc/015-1_Woodland/monsters.txt b/npc/015-1_Woodland/monsters.txt
index 4984f101..20dc2c0c 100644
--- a/npc/015-1_Woodland/monsters.txt
+++ b/npc/015-1_Woodland/monsters.txt
@@ -6,11 +6,14 @@
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 Gamboge 1031,5,0,0,Mob31::OnGamboge
+015-1.gat,0,0,0,0 monster Alizarin 1032,5,0,0,Mob31::OnAlizarin
+015-1.gat,0,0,0,0 monster Mauve 1029,4,270000,180000,Mob31::OnMauve
015-1.gat,0,0,0,0 monster SilkWorm 1035,7,15000,7000,Mob31::onSilkWorm
+015-1.gat,0,0,0,0 monster Squirrel 1038,30,20,10,Mob31::OnSquirrel
+
015-1.gat,0,0,0 script Mob31 -1,{
OnLogHead:
set @mobID, 1025;
@@ -27,6 +30,11 @@ OnFlower:
callfunc "MobPoints";
break;
+OnMauve:
+ set @mobID, 1029;
+ callfunc "MobPoints";
+ break;
+
OnGamboge:
set @mobID, 1031;
callfunc "MobPoints";
@@ -42,5 +50,10 @@ OnSilkWorm:
callfunc "MobPoints";
break;
+OnSquirrel:
+ set @mobID, 1038;
+ callfunc "MobPoints";
+ break;
+
end;
}