//...I'm surprised about her and the sucking animation to be honest.

Class LostSucker : Actor
{
	//$Category Desgraciados
	//$Title Bitchy Lost Soul
	
	Default
	{
	Health 100;
	Radius 16;
	Height 56;
	Mass 50;
	Speed 8;
	Damage 3;
	PainChance 256;
	AttackSound "hsoul/attack";
	SeeSound "hsoul/see";
    PainSound "hsoul/hurt";
    DeathSound "hsoul/faint";
	RenderStyle "SoulTrans";
	Monster;
	+RETARGETAFTERSLAM;
	+FLOAT;
	+NOGRAVITY;
	+NOBLOOD;
	+NOBLOODDECALS;
	+DONTGIB;
	+MISSILEMORE;
	+DONTFALL;
	+NOICEDEATH;
	Obituary "%o was kissed to death by a bitchy lost soul.";
	Tag "Bitchy Lost Soul";
	}
	States
	{
	Spawn:
		HSKL AB 10 BRIGHT A_Look();
		loop;
	See:
		HSKL AB 6 BRIGHT A_Chase();
		loop;
	Missile:
		HSKL C 10 BRIGHT A_FaceTarget();
		HSKL D 4 BRIGHT A_SkullAttack();
		HSKL CD 4 BRIGHT;
		goto Missile+2;
	Pain:
		HSKL E 3 BRIGHT;
		HSKL E 3 BRIGHT A_Pain();
		goto See;
	Death:
		HSKL F 6;
		HSKL G 6 BRIGHT A_Scream();
		HSKL H 6 BRIGHT;
		HSKL I 6 BRIGHT A_NoBlocking();
		HSKL JKLMNOPQRSTU 6 BRIGHT;
		stop;
	}
}