mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-29 23:42:08 +00:00
513de38723
Using ownerActor is not robust, for some actors this will have unwanted side effects.
27 lines
428 B
Text
27 lines
428 B
Text
class RedneckMosquito : DukeActor
|
|
{
|
|
const MOSQUITOSTRENGTH = 1;
|
|
const MOSQDAMAGE = -4;
|
|
default
|
|
{
|
|
pic "MOSQUITO";
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+NOWATERDIP;
|
|
+FLOATING;
|
|
+QUICKALTERANG;
|
|
+NOJIBS;
|
|
+NOHITJIBS;
|
|
+NOSHOTGUNBLOOD;
|
|
falladjustz 0;
|
|
floating_floordist 30;
|
|
floating_ceilingdist 50;
|
|
}
|
|
|
|
override void Initialize(DukeActor spawner)
|
|
{
|
|
self.scale = (0.21875, 0.109375);
|
|
self.clipdist = 32;
|
|
}
|
|
|
|
}
|