mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-02 09:02:18 +00:00
513de38723
Using ownerActor is not robust, for some actors this will have unwanted side effects.
16 lines
222 B
Text
16 lines
222 B
Text
class RedneckRabbit : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "RABBIT";
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+LOOKALLAROUND;
|
|
Strength 50;
|
|
}
|
|
|
|
override void Initialize(DukeActor spawner)
|
|
{
|
|
self.scale = (0.28125, 0.28125);
|
|
}
|
|
}
|