2016-03-01 15:47:10 +00:00
|
|
|
// Gibbed marine -----------------------------------------------------------
|
|
|
|
|
2016-10-14 18:08:41 +00:00
|
|
|
class GibbedMarine : Actor
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
2016-10-14 18:08:41 +00:00
|
|
|
PLAY W -1;
|
|
|
|
Stop;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Gibbed marine (extra copy) ----------------------------------------------
|
|
|
|
|
2016-10-14 18:08:41 +00:00
|
|
|
class GibbedMarineExtra : GibbedMarine
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dead marine -------------------------------------------------------------
|
|
|
|
|
2016-10-14 18:08:41 +00:00
|
|
|
class DeadMarine : Actor
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
2016-10-14 18:08:41 +00:00
|
|
|
PLAY N -1;
|
|
|
|
Stop;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If it wasn't for Dehacked compatibility, the rest of these would be
|
|
|
|
* better defined as single frame states. But since Doom reused the
|
|
|
|
* dead state from the original monsters, we need to do the same.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Dead zombie man ---------------------------------------------------------
|
|
|
|
|
2016-10-14 18:08:41 +00:00
|
|
|
class DeadZombieMan : ZombieMan
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-10-14 18:08:41 +00:00
|
|
|
Default
|
|
|
|
{
|
|
|
|
Skip_Super;
|
|
|
|
DropItem "None";
|
|
|
|
}
|
2016-03-01 15:47:10 +00:00
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
2016-10-14 18:08:41 +00:00
|
|
|
Goto Super::Death+4;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dead shotgun guy --------------------------------------------------------
|
|
|
|
|
2016-10-14 18:08:41 +00:00
|
|
|
class DeadShotgunGuy : ShotgunGuy
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-10-14 18:08:41 +00:00
|
|
|
Default
|
|
|
|
{
|
|
|
|
Skip_Super;
|
|
|
|
DropItem "None";
|
|
|
|
}
|
2016-03-01 15:47:10 +00:00
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
2016-10-14 18:08:41 +00:00
|
|
|
Goto Super::Death+4;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dead imp ----------------------------------------------------------------
|
|
|
|
|
2016-10-14 18:08:41 +00:00
|
|
|
class DeadDoomImp : DoomImp
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-10-14 18:08:41 +00:00
|
|
|
Default
|
|
|
|
{
|
|
|
|
Skip_Super;
|
|
|
|
}
|
2016-03-01 15:47:10 +00:00
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
2016-10-14 18:08:41 +00:00
|
|
|
Goto Super::Death+4;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dead demon --------------------------------------------------------------
|
|
|
|
|
2016-10-14 18:08:41 +00:00
|
|
|
class DeadDemon : Demon
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-10-14 18:08:41 +00:00
|
|
|
Default
|
|
|
|
{
|
|
|
|
Skip_Super;
|
|
|
|
}
|
2016-03-01 15:47:10 +00:00
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
2016-10-14 18:08:41 +00:00
|
|
|
Goto Super::Death+5;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dead cacodemon ----------------------------------------------------------
|
|
|
|
|
2016-10-14 18:08:41 +00:00
|
|
|
class DeadCacodemon : Cacodemon
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-10-14 18:08:41 +00:00
|
|
|
Default
|
|
|
|
{
|
|
|
|
Skip_Super;
|
|
|
|
}
|
2016-03-01 15:47:10 +00:00
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
2016-10-14 18:08:41 +00:00
|
|
|
Goto Super::Death+5;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dead lost soul ----------------------------------------------------------
|
|
|
|
|
|
|
|
/* [RH] Considering that the lost soul removes itself when it dies, there
|
|
|
|
* really wasn't much point in id including this thing, but they did anyway.
|
|
|
|
* (There was probably a time when it stayed around after death, and this is
|
|
|
|
* a holdover from that.)
|
|
|
|
*/
|
|
|
|
|
2016-10-14 18:08:41 +00:00
|
|
|
class DeadLostSoul : LostSoul
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-10-14 18:08:41 +00:00
|
|
|
Default
|
|
|
|
{
|
|
|
|
Skip_Super;
|
|
|
|
}
|
2016-03-01 15:47:10 +00:00
|
|
|
States
|
|
|
|
{
|
|
|
|
Spawn:
|
2016-10-14 18:08:41 +00:00
|
|
|
Goto Super::Death+5;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|