mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-21 08:01:03 +00:00
25 lines
349 B
Text
25 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";
|
|
}
|
|
|
|
}
|