mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-22 08:22:38 +00:00
35 lines
333 B
Text
35 lines
333 B
Text
|
class NWinterSnowball : DukeActor
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "SNOWBALL";
|
||
|
Strength 0;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
class NWinterSnowman : DukeActor
|
||
|
{
|
||
|
const SNOWMANSTRENGTH = 75;
|
||
|
|
||
|
default
|
||
|
{
|
||
|
pic "SNOWMAN";
|
||
|
+BADGUY
|
||
|
+KILLCOUNT
|
||
|
Strength SNOWMANSTRENGTH;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
class NWinterTank : DukeTank
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
DukeTank.SpawnType "NWinterSnowman";
|
||
|
}
|
||
|
}
|