mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-27 22:42:22 +00:00
24 lines
359 B
Text
24 lines
359 B
Text
class DukeSectorEffector : DukeActor
|
|
{
|
|
//This never gets ticked, the handler goes directly to the native implementations.
|
|
}
|
|
|
|
class DukePlayerBase : DukeActor
|
|
{
|
|
const YELLHURTSOUNDSTRENGTH = 40;
|
|
const YELLHURTSOUNDSTRENGTHMP = 50;
|
|
default
|
|
{
|
|
pic "APLAYER";
|
|
+DESTRUCTOIMMUNE;
|
|
}
|
|
}
|
|
|
|
class RedneckMotoHit : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "MOTOHIT0";
|
|
}
|
|
}
|
|
|