diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-23 19:14:00 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-23 19:14:00 -0300 |
commit | 1616d45d00866f6251b463d8dda310e4dc78e9c0 (patch) | |
tree | 229f7c2d549354897294457fc13f654640d6fe42 /npc | |
parent | 5bfb1204a7f1825a9ed40a3954f71757e0263b56 (diff) | |
download | serverdata-1616d45d00866f6251b463d8dda310e4dc78e9c0.tar.gz serverdata-1616d45d00866f6251b463d8dda310e4dc78e9c0.tar.bz2 serverdata-1616d45d00866f6251b463d8dda310e4dc78e9c0.tar.xz serverdata-1616d45d00866f6251b463d8dda310e4dc78e9c0.zip |
No one seats on my throne :s_:
Diffstat (limited to 'npc')
-rw-r--r-- | npc/boss/_import.txt | 1 | ||||
-rw-r--r-- | npc/boss/throne.txt | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/npc/boss/_import.txt b/npc/boss/_import.txt index 99f216b3b..c3051c8d7 100644 --- a/npc/boss/_import.txt +++ b/npc/boss/_import.txt @@ -1,2 +1,3 @@ // Map boss: Boss Arena // This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/boss/throne.txt", diff --git a/npc/boss/throne.txt b/npc/boss/throne.txt new file mode 100644 index 000000000..e8f375bff --- /dev/null +++ b/npc/boss/throne.txt @@ -0,0 +1,17 @@ +// TMW2 Scripts. +// Author: +// Jesusalva +// Description: +// Monster King Throne + +boss,45,45,0 script #monsterthrone NPC_HIDDEN,0,0,{ + end; + +OnTouch: + if (strcharinfo(2) == "Monster King") end; + warp "boss", 45, 48; + percentheal -15,0; + dispbottom "The throne is cursed, only the Monster King may seat on it."; + end; + +} |