mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-12 13:41:48 +00:00
4692cc55f7
Only required 4 new flags plus one property...
27 lines
408 B
Text
27 lines
408 B
Text
class RedneckMosquito : DukeActor
|
|
{
|
|
const MOSQUITOSTRENGTH = 1;
|
|
const MOSQDAMAGE = -4;
|
|
default
|
|
{
|
|
pic "DRONE";
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+NOWATERDIP;
|
|
+FLOATING;
|
|
+QUICKALTERANG;
|
|
+NOJIBS;
|
|
+NOHITJIBS;
|
|
+NOSHOTGUNBLOOD;
|
|
falladjustz 0;
|
|
floating_floordist 30;
|
|
floating_ceilingdist 50;
|
|
}
|
|
|
|
override void Initialize()
|
|
{
|
|
self.scale = (0.21875, 0.109375);
|
|
self.clipdist = 32;
|
|
}
|
|
|
|
}
|