diff options
Diffstat (limited to 'npc/boss/throne.txt')
-rw-r--r-- | npc/boss/throne.txt | 17 |
1 files changed, 17 insertions, 0 deletions
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; + +} |