raze/wadsrc/static/zscript/games/duke/actors/rrraenemies/rabbit.zs
Christoph Oelckers 513de38723 - pass the spawner to Initialize as an explicit parameter.
Using ownerActor is not robust, for some actors this will have unwanted side effects.
2023-05-19 22:57:26 +02:00

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);
}
}