mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-28 15:02:24 +00:00
81 lines
1.3 KiB
Text
81 lines
1.3 KiB
Text
|
class DukeNewBeast : DukeActor
|
||
|
{
|
||
|
const NEWBEASTSTRENGTH = 300;
|
||
|
const NEWBEASTSCRATCHAMOUNT = -22;
|
||
|
|
||
|
default
|
||
|
{
|
||
|
pic "NEWBEAST";
|
||
|
Strength NEWBEASTSTRENGTH;
|
||
|
+BADGUY;
|
||
|
+KILLCOUNT;
|
||
|
+GREENSLIMEFOOD;
|
||
|
+GREENBLOOD;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//---------------------------------------------------------------------------
|
||
|
//
|
||
|
//
|
||
|
//
|
||
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
class DukeNewBeastStayput : DukeNewBeast
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "NEWBEASTSTAYPUT";
|
||
|
+BADGUYSTAYPUT;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
//---------------------------------------------------------------------------
|
||
|
//
|
||
|
//
|
||
|
//
|
||
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
class DukeNewBeastHang : DukeNewBeast
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "NEWBEASTHANG";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//---------------------------------------------------------------------------
|
||
|
//
|
||
|
//
|
||
|
//
|
||
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
class DukeNewBeastHangDead : DukeNewBeast // (4671)
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "NEWBEASTHANGDEAD";
|
||
|
-KILLCOUNT;
|
||
|
Strength TOUGH;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
//---------------------------------------------------------------------------
|
||
|
//
|
||
|
//
|
||
|
//
|
||
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
class DukeNewBeastJump : DukeNewBeast // (4690)
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "NEWBEASTJUMP";
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|