diff options
Diffstat (limited to 'npc/010-1_Woodland')
-rw-r--r-- | npc/010-1_Woodland/_import.txt | 4 | ||||
-rw-r--r-- | npc/010-1_Woodland/_mobs.txt | 19 | ||||
-rw-r--r-- | npc/010-1_Woodland/_warps.txt | 7 | ||||
-rw-r--r-- | npc/010-1_Woodland/monsters.txt | 40 |
4 files changed, 70 insertions, 0 deletions
diff --git a/npc/010-1_Woodland/_import.txt b/npc/010-1_Woodland/_import.txt new file mode 100644 index 00000000..b57664d0 --- /dev/null +++ b/npc/010-1_Woodland/_import.txt @@ -0,0 +1,4 @@ +map: 010-1.gat +npc: npc/010-1_Woodland/monsters.txt +npc: npc/010-1_Woodland/_warps.txt +npc: npc/010-1_Woodland/_mobs.txt diff --git a/npc/010-1_Woodland/_mobs.txt b/npc/010-1_Woodland/_mobs.txt new file mode 100644 index 00000000..c4b359db --- /dev/null +++ b/npc/010-1_Woodland/_mobs.txt @@ -0,0 +1,19 @@ +// 010-1 Woodland mobs + +010-1.gat,82,63,19,19 monster Scorpion 1003,1,0,0,Mob010-1::On1003 +010-1.gat,49,71,31,19 monster Shroom 1019,1,0,0,Mob010-1::On1019 + + +010-1.gat,0,0,0 script Mob010-1 -1,{ +On1003: + set @mobID, 1003; + callfunc "MobPoints"; + break; + +On1019: + set @mobID, 1019; + callfunc "MobPoints"; + break; + + end; +} diff --git a/npc/010-1_Woodland/_warps.txt b/npc/010-1_Woodland/_warps.txt new file mode 100644 index 00000000..b02dc45c --- /dev/null +++ b/npc/010-1_Woodland/_warps.txt @@ -0,0 +1,7 @@ +// 010-1 Woodland warps + +010-1.gat,49,23 warp ToWoodland 0,-1,011-1.gat,46,99 +010-1.gat,14,55 warp ToWoodland -1,0,015-1.gat,92,54 +010-1.gat,36,94 warp ToDimondsCove -1,-1,010-2.gat,32,44 +010-1.gat,56,104 warp ToWoodland 1,-1,015-1.gat,56,21 +010-1.gat,131,54 warp ToWoodland -1,0,007-1.gat,25,53 diff --git a/npc/010-1_Woodland/monsters.txt b/npc/010-1_Woodland/monsters.txt new file mode 100644 index 00000000..f371e497 --- /dev/null +++ b/npc/010-1_Woodland/monsters.txt @@ -0,0 +1,40 @@ +// Map: new_14-1 +// This is South Woodland. +// + +new_14-1.gat,0,0,0,0 monster Scorpion 1003,50,0,0,Mob14::OnScorpion +new_14-1.gat,0,0,0,0 monster SpikyMushroom 1019,50,0,0,Mob14::OnSpikyMushroom +new_14-1.gat,0,0,0,0 monster LogHead 1025,50,0,0,Mob14::OnLogHead + +new_14-1.gat,0,0,0,0 monster Cobalt 1030,1,2700000,1800000,Mob14::OnCobalt + +new_14-1.gat,0,0,0,0 monster SilkWorm 1035,2,60000,30000,Mob14::OnSilkWorm + +new_14-1.gat,0,0,0 script Mob14 -1,{ +OnScorpion: + set @mobID, 1003; + callfunc "MobPoints"; + break; + +OnSpikyMushroom: + set @mobID, 1019; + callfunc "MobPoints"; + break; + +OnLogHead: + set @mobID, 1025; + callfunc "MobPoints"; + break; + +OnCobalt: + set @mobID, 1030; + callfunc "MobPoints"; + break; + +OnSilkWorm: + set @mobID, 1035; + callfunc "MobPoints"; + break; + + end; +} |