diff options
Diffstat (limited to 'npc/004-1_Beach')
-rw-r--r-- | npc/004-1_Beach/_import.txt | 4 | ||||
-rw-r--r-- | npc/004-1_Beach/_mobs.txt | 7 | ||||
-rw-r--r-- | npc/004-1_Beach/_warps.txt | 4 | ||||
-rw-r--r-- | npc/004-1_Beach/monsters.txt | 26 |
4 files changed, 41 insertions, 0 deletions
diff --git a/npc/004-1_Beach/_import.txt b/npc/004-1_Beach/_import.txt new file mode 100644 index 00000000..fc7c344b --- /dev/null +++ b/npc/004-1_Beach/_import.txt @@ -0,0 +1,4 @@ +map: 004-1.gat +npc: npc/004-1_Beach/monsters.txt +npc: npc/004-1_Beach/_warps.txt +npc: npc/004-1_Beach/_mobs.txt diff --git a/npc/004-1_Beach/_mobs.txt b/npc/004-1_Beach/_mobs.txt new file mode 100644 index 00000000..bc8e68a9 --- /dev/null +++ b/npc/004-1_Beach/_mobs.txt @@ -0,0 +1,7 @@ +// 004-1 Beach mobs + + + +004-1.gat,0,0,0 script Mob004-1 -1,{ + end; +} diff --git a/npc/004-1_Beach/_warps.txt b/npc/004-1_Beach/_warps.txt new file mode 100644 index 00000000..b6ccc7d0 --- /dev/null +++ b/npc/004-1_Beach/_warps.txt @@ -0,0 +1,4 @@ +// 004-1 Beach warps + +004-1.gat,84,113 warp ToSandstorm 1,-1,002-1.gat,29,15 +004-1.gat,37,111 warp ToBeach 1,-1,003-1.gat,141,21 diff --git a/npc/004-1_Beach/monsters.txt b/npc/004-1_Beach/monsters.txt new file mode 100644 index 00000000..89fcbda7 --- /dev/null +++ b/npc/004-1_Beach/monsters.txt @@ -0,0 +1,26 @@ +// Map: new_34-1 +// This is the Beach west of Tulimshar. +// + +new_34-1.gat,0,0,0,0 monster SeaSlime 1033,30,0,0,Mob34::OnSeaSlime +new_34-1.gat,0,0,0,0 monster GiantMaggot 1006,10,0,0,Mob34::OnGiantMaggot +new_34-1.gat,0,0,0,0 monster RedScorpion 1004,12,0,0,Mob34::OnRedScorpion + +new_34-1.gat,0,0,0 script Mob34 -1,{ +OnSeaSlime: + set @mobID, 1033; + callfunc "MobPoints"; + break; + +OnGiantMaggot: + set @mobID, 1006; + callfunc "MobPoints"; + break; + +OnRedScorpion: + set @mobID, 1004; + callfunc "MobPoints"; + break; + + end; +} |