//...I'm actually scared about this one. (and no, it's not about the obvious.)

class SpiderNess : SpiderMastermind
{
	//$Category Desgraciados
	//$Title Spider Demoness
	
	Actor spiderpusspuss;
	Default
	{
		Health 3420;
		Radius 128;
		Height 100;
		Mass 1000;
		Speed 12;
		PainChance 40;
		Monster;
		+BOSS;
		+MISSILEMORE;
		+FLOORCLIP;
		+NOBLOOD;
		+NOBLOODDECALS;
		+DONTGIB;
		+NORADIUSDMG;
		+DONTMORPH;
		+BOSSDEATH;
		SeeSound "spider/see";
		AttackSound "weapons/laser/chaingun";
		PainSound "spider/hurt";
		DeathSound "spider/faint";
		Obituary "%o stood in awe of the Spider Demoness";
		Tag "Spider Demoness";
	}
	States
	{
	Spawn:
		SPDA AB 10 A_Look();
		Loop;
	See:
		SPDA A 3 A_Metal();
		SPDA ABB 3 A_Chase();
		SPDA C 3 A_Metal();
		SPDA CDD 3 A_Chase();
		SPDA E 3 A_Metal();
		SPDA EFF 3 A_Chase();
		Loop;
	Missile:
		SPDA A 20 BRIGHT A_FaceTarget();
		SPDA G 4 BRIGHT A_SPosAttackUseAtkSound();
		SPDA H 4 BRIGHT A_SposAttackUseAtkSound();
		SPDA H 1 BRIGHT A_SpidRefire();
		Goto Missile+1;
	Pain:
		SPDA I 3;
		SPDA I 3 A_Pain();
		Goto See;
	Death:
		SPDA J 20 A_Scream();
		SPDA K 10 A_NoBlocking();
		SPDA L 10;
		SPDA M 30;
		SPDA M -1 A_BossDeath();
		Stop;
	}
}