2008-08-30 19:44:19 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Flemoidus Commonus
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2016-10-18 21:22:41 +00:00
|
|
|
class FlemoidusCommonus : ZombieMan
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
2016-10-18 21:22:41 +00:00
|
|
|
Default
|
|
|
|
{
|
|
|
|
DropItem "";
|
|
|
|
Obituary "$OB_COMMONUS";
|
|
|
|
}
|
2008-08-30 19:44:19 +00:00
|
|
|
States
|
|
|
|
{
|
|
|
|
Missile:
|
2016-10-18 21:22:41 +00:00
|
|
|
Stop;
|
2008-08-30 19:44:19 +00:00
|
|
|
Melee:
|
2016-10-18 21:22:41 +00:00
|
|
|
goto Super::Missile;
|
2008-08-30 19:44:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Flemoidus Bipedicus
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2016-10-18 21:22:41 +00:00
|
|
|
class FlemoidusBipedicus : ShotgunGuy
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
2016-10-18 21:22:41 +00:00
|
|
|
Default
|
|
|
|
{
|
|
|
|
DropItem "";
|
|
|
|
Obituary "$OB_BIPEDICUS";
|
|
|
|
}
|
2008-08-30 19:44:19 +00:00
|
|
|
States
|
|
|
|
{
|
|
|
|
Missile:
|
2016-10-18 21:22:41 +00:00
|
|
|
Stop;
|
2008-08-30 19:44:19 +00:00
|
|
|
Melee:
|
2016-10-18 21:22:41 +00:00
|
|
|
goto Super::Missile;
|
2008-08-30 19:44:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Flemoidus Bipedicus w/ Armor
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2016-10-18 21:22:41 +00:00
|
|
|
class ArmoredFlemoidusBipedicus : DoomImp
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
2016-10-18 21:22:41 +00:00
|
|
|
Default
|
|
|
|
{
|
|
|
|
Obituary "$OB_BIPEDICUS2";
|
|
|
|
HitObituary "$OB_BIPEDICUS2";
|
|
|
|
}
|
2008-08-30 19:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Flemoidus Cycloptis Commonus
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2016-10-18 21:22:41 +00:00
|
|
|
class FlemoidusCycloptisCommonus : Demon
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
2016-10-18 21:22:41 +00:00
|
|
|
Default
|
|
|
|
{
|
|
|
|
Obituary "$OB_CYCLOPTIS";
|
|
|
|
}
|
2008-08-30 19:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// The Flembrane
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2016-10-18 21:22:41 +00:00
|
|
|
class Flembrane : BaronOfHell
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
2016-10-18 21:22:41 +00:00
|
|
|
Default
|
|
|
|
{
|
|
|
|
radius 44;
|
|
|
|
height 100;
|
|
|
|
speed 0;
|
|
|
|
Obituary "$OB_FLEMBRANE";
|
|
|
|
}
|
2008-08-30 19:44:19 +00:00
|
|
|
States
|
|
|
|
{
|
|
|
|
Missile:
|
2016-10-18 21:22:41 +00:00
|
|
|
BOSS EF 3 A_FaceTarget;
|
|
|
|
BOSS G 0 A_BruisAttack;
|
|
|
|
goto See;
|
2008-08-30 19:44:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
|
2016-10-18 21:22:41 +00:00
|
|
|
class ChexSoul : LostSoul
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
2016-10-18 21:22:41 +00:00
|
|
|
Default
|
|
|
|
{
|
|
|
|
height 0;
|
|
|
|
}
|
2008-08-30 19:44:19 +00:00
|
|
|
}
|