summaryrefslogtreecommitdiff
path: root/npc/031-0
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-10-23 21:44:22 -0300
committerJesusaves <cpntb1@ymail.com>2022-10-23 21:44:22 -0300
commita7c45a192268da2601cef47a4cdba987ae2327ca (patch)
treec5fb5b97db109fe7106496dd96498c475881046b /npc/031-0
downloadserverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.gz
serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.bz2
serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.xz
serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.zip
Initial commit (Moubootaur Legends fork)
Diffstat (limited to 'npc/031-0')
-rw-r--r--npc/031-0/_import.txt5
-rw-r--r--npc/031-0/_mobs.txt8
-rw-r--r--npc/031-0/_warps.txt4
-rw-r--r--npc/031-0/boss.txt30
4 files changed, 47 insertions, 0 deletions
diff --git a/npc/031-0/_import.txt b/npc/031-0/_import.txt
new file mode 100644
index 0000000..21649ed
--- /dev/null
+++ b/npc/031-0/_import.txt
@@ -0,0 +1,5 @@
+// Map 031-0: Aethyr
+// This file is generated automatically. All manually added changes will be removed when running the Converter.
+"npc/031-0/_mobs.txt",
+"npc/031-0/_warps.txt",
+"npc/031-0/boss.txt",
diff --git a/npc/031-0/_mobs.txt b/npc/031-0/_mobs.txt
new file mode 100644
index 0000000..b62a927
--- /dev/null
+++ b/npc/031-0/_mobs.txt
@@ -0,0 +1,8 @@
+// This file is generated automatically. All manually added changes will be removed when running the Converter.
+// Map 031-0: Aethyr mobs
+031-0,95,82,91,101 monster Ice Maggot 1012,32,30000,30000
+031-0,118,59,36,33 monster Moggun 1070,8,30000,30000
+031-0,58,53,44,35 monster Water Fairy 1184,8,30000,30000
+031-0,104,120,30,30 monster Santa Slime 1096,6,30000,30000
+031-0,46,34,5,5 monster Wolvern 1037,2,10000,10000
+031-0,91,112,10,7 monster Archant 1026,2,30000,30000
diff --git a/npc/031-0/_warps.txt b/npc/031-0/_warps.txt
new file mode 100644
index 0000000..9026149
--- /dev/null
+++ b/npc/031-0/_warps.txt
@@ -0,0 +1,4 @@
+// This file is generated automatically. All manually added changes will be removed when running the Converter.
+// Map 031-0: Aethyr warps
+031-0,127,45,0 warp #031-0_127_45 0,0,031-1,68,31
+031-0,25,60,0 warp #031-0_25_60 0,0,031-1,25,26
diff --git a/npc/031-0/boss.txt b/npc/031-0/boss.txt
new file mode 100644
index 0000000..efd2425
--- /dev/null
+++ b/npc/031-0/boss.txt
@@ -0,0 +1,30 @@
+// TMW2 Script
+// Author:
+// Jesusalva
+// Description:
+// Spider Queen Boss
+
+031-0,0,0,0 script #BossCtrl_031-0 NPC_HIDDEN,{
+ end;
+
+// Respawn every half hour
+OnTimer1800000:
+ stopnpctimer;
+OnInit:
+ .@m = monster("031-0", 149, 123, strmobinfo(1, Tengu), Tengu, 1, "#BossCtrl_031-0::OnBossDeath");
+ set_aggro(.@m, MD_BOSS);
+ end;
+
+OnBossDeath:
+ initnpctimer;
+ .@party=getcharid(1);
+ if (.@party > 0) {
+ mapannounce getmap(), "Boss deafeated by Party: " + getpartyname(.@party), bc_all;
+ } else {
+ mapannounce getmap(), "Boss deafeated by: " + strcharinfo(0), bc_all;
+ }
+ getexp 0, 1000+BaseLevel*8+JobLevel;
+ fix_mobkill(Tengu);
+ end;
+
+}