#e
#Title[utFA[T[Nv]
#Text[]
#Image[.]
#BackGround[User]
#Player[FREE]
#ScriptVersion[2]
script_enemy_main {
    let name    = "utFA[T[Nv";
let csd = GetCurrentScriptDirectory;
    let imgBoss =csd ~ "..\lib/dot_daiyousei.png"; 
    let imgFam  = csd ~ "img\familiar.png";
    let imgBG  = csd ~ "..\img\st1bg1.png";
SetRateScoreSystemEnable(false);
    // ʒu
    let xIni    = GetCenterX;
    let yIni    = GetClipMinY + 128;

	let wIni=60;
	let DrawY=330;
	let count=-wIni;

	#include_function ".\..\txt\SpellCardBonusDefine.txt"
	let SpellTimer=50;

	let bgy=0;

    @Initialize {

	StartSpellHistory(1);
        SetLife(800);
        SetDamageRate(1, 1);
        LoadGraphic(imgBoss);
        LoadGraphic(imgBG);
	InitializeAction();
        TMain;
    }

    @MainLoop {
        SetCollisionA(GetX, GetY, 32);
        SetCollisionB(GetX, GetY, 16);
	Bonus=GetSpellCardBonusScore-(SpellBonus*3)/(SpellTimer*60);
        yield;
	bgy-=1;
    }

    @DrawLoop {
	DrawBossShadow( imgBoss,150,0,255,255);
	DrawBoss( imgBoss );
	DrawSpellHistory;
    }

    @Finalize {
        DeleteGraphic(imgBoss);
        DeleteGraphic(imgBG);
	EndSpellHistory(1);
	loop(10)
	{
		ItemSet(GetX+rand(-40,40),GetY+rand(-40,40),1);
		ItemSet(GetX+rand(-40,40),GetY+rand(-40,40),2);
	}
    }
	@BackGround
	{
		SetTexture(imgBG);
		SetGraphicRect(0,bgy,1280,960);
		SetColor(150,150,150);
		SetAlpha(100);
		DrawGraphic(224, 240);	
	}

    // C^XN
task TMain 
{
	standBy;
	spell;
	Trate;
	Shot;
}

task Trate
{
	while(OnBomb==true){yield;}
	wait(120);
        SetDamageRate(25, 25);
}




sub standBy//ʒu
{
	SetAction(ACT_MOVE, wIni);
	SetMovePosition02(xIni, yIni, wIni);
	SetInvincibility(wIni);
	wait(wIni);
}

sub spell//[V
{
        CutIn(YOUMU, name, "", 0, 0, 0, 0);
        SetTimer(SpellTimer);
        SetScore(SpellBonus);
	SetAction(ACT_SPELL,90);
	wait(90);
}


task Shot
{
let w=3;
let r=70;
loop
{
let angle=rand(0,360);
let angle2=angle-180;
	ascent(let bw in 0..30)
	{
		ascent(let i in 0..3)
		{
		CreateShotA(1,GetX+r*cos(angle)+r*cos(angle2),GetY+r*sin(angle)+r*sin(angle2),30);
		SetShotDataA(1,0,0,0,0,0,0,RED01);
		SetShotDataA(1,210-w*bw,1,GetAngleToPlayer+rand(-120,120),0,0,0,RED01);
		FireShot(1);
		angle+=120;
		angle2+=120;
		}
		wait(w);
		angle2+=10;
	}

angle+=60;
angle2=angle-180;

	ascent(let bw in 0..30)
	{
		ascent(let i in 0..3)
		{
		CreateShotA(1,GetX+r*cos(angle)+r*cos(angle2),GetY+r*sin(angle)+r*sin(angle2),30);
		SetShotDataA(1,0,0,0,0,0,0,BLUE01);
		SetShotDataA(1,120-w*bw,1,GetAngleToPlayer+rand(-120,120),0,0,0,BLUE01);
		FireShot(1);
		angle+=120;
		angle2+=120;
		}
		wait(w);
		angle2-=10;
	}
wait(120);
}
}



#include_function ".\..\txt\data.txt"
#include_function ".\..\txt\Spelldata.txt"
#include_function ".\..\lib/lib_anime_Daiyousei.txt"
}
