script_enemy_main {
	#include_function ".\lib\lib_anime_Mokou.txt"
	#include_function ".\Draw.txt"
	#include_function ".\lib_Functions.txt"
	let shotData	=csd ~ "img\shot_All.txt";
	let imgBoss	=csd ~ "img\Boss\dot_mokou.png";

	@Initialize {
        	SetLife(1);
		SetDamageRate(0, 0);
		LoadUserShotData(shotData);
		LoadGraphic(imgBoss);
		Load;
        	Main;
	}

   	@MainLoop {
        	yield;
    	}

	@DrawLoop {
		SetColor(255,255,255);
		SetGraphicScale(1,1);
		SetAlpha(255);
		DrawBoss(imgBoss);
	}

    	task Main {
		yield;
		RizalectionA;
		wait(180);
		AddLife(-1);
	}


	@Finalize{
		DeleteGraphic(imgBoss);
		Delete;
	}

}