summaryrefslogblamecommitdiff
path: root/npc/boss/throne.txt
blob: e8f375bff0a60747cafb92509e6af3fe016cbb8d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;

}