mirror of
https://github.com/ZDoom/Raze.git
synced 2025-02-02 05:01:58 +00:00
26 lines
349 B
Text
26 lines
349 B
Text
|
class NWinterSanta : DukeActor
|
||
|
{
|
||
|
const SOBBOTSTRENGTH = 2500;
|
||
|
const MINIBOSSSTRENGTH = 100;
|
||
|
|
||
|
default
|
||
|
{
|
||
|
+BADGUY;
|
||
|
+KILLCOUNT;
|
||
|
pic "PIGCOP"; // tiles are offset from here.
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
class NWinterSantaFly : NWinterSanta
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
pic "PIGCOPDIVE"; // tiles are offset from here.
|
||
|
Strength SOBBOTSTRENGTH;
|
||
|
StartAction "ABOTFLY";
|
||
|
}
|
||
|
|
||
|
}
|