    //XgXył|ʒm
    //gpO[oϐFXText, SizeText, AlphaText, ColorText
    //o̓O[oϐFXText, SizeText, AlphaText, ColorText

    task TTellLastSpell
    {
        let XFrom = [GetCenterX - 128, GetCenterY];	//textW
        let XTo = [GetClipMinX + 8, GetClipMinY + 24];	//textҋ@W
        let Size = [48, 15];			//textTCY(Eҋ@)
        AlphaText = 255;
        let ColorFrom = [255, 0, 0, 0, 0, 0];
        let ColorTo = [255, 255, 255, 255, 96, 160];

        let time = [TimeBossApply, TimeToMakeMirror];	//\ԁEڍs
        let dSize = (Size[1] - Size[0]) / time[1];
        let dX = [(XTo[0] - XFrom[0]) / time[1], (XTo[1] - XFrom[1]) / time[1]];
        let dColor = [0, 0, 0, 0, 0, 0];

        ascent(i in 0..6)
        {
            ColorText[i] = ColorFrom[i];
            dColor[i] = (ColorTo[i] - ColorFrom[i]) / time[1];
        }

        //\
        XText = XFrom;
        SizeText = 48;
        wait(time[0]);

        //ڍs
        loop(TimeToMakeMirror)
        {
            SizeText += dSize;
            XText[0] = XText[0] + dX[0];
            XText[1] = XText[1] + dX[1];
            ascent(i in 0..6)
            {
                ColorText[i] = ColorText[i] + dColor[i];
            }
            yield;
        }
    }