mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-22 00:11:56 +00:00
61 lines
706 B
Text
61 lines
706 B
Text
|
// NWinter new stuff
|
||
|
|
||
|
class NWinterNoisemaker : DukeActor // NOISEMAKER (3883)
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "NOISEMAKER";
|
||
|
Strength 999;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
class NWinterMaleGeek : DukeActor // MALEGEEK (3761)
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "MALEGEEK";
|
||
|
Strength 20;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
class NWinterFemaleGeek : DukeActor // FEMALEGEEK (3823)
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "FEMALEGEEK";
|
||
|
Strength 20;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
class NWinterSnowmaker : DukeActor // SNOWMAKER (3787)
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "SNOWMAKER";
|
||
|
Strength 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
class NWinterSnowmakerNomove : DukeActor // SNOWMAKERNOMOVE (3789)
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "SNOWMAKERNOMOVE";
|
||
|
Strength 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
class NWinterSnowflake : DukeActor // SNOWFLAKE (3697)
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "SNOWFLAKE";
|
||
|
Strength 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|