mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
26 lines
389 B
Text
26 lines
389 B
Text
class RedneckMosquito : DukeActor
|
|
{
|
|
const MOSQUITOSTRENGTH = 1;
|
|
const MOSQDAMAGE = -4;
|
|
default
|
|
{
|
|
pic "DRONE";
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+NOWATERDIP;
|
|
+FLOATING;
|
|
+QUICKALTERANG;
|
|
+NOJIBS;
|
|
+NOHITJIBS;
|
|
falladjustz 0;
|
|
floating_floordist 30;
|
|
floating_ceilingdist 50;
|
|
}
|
|
|
|
override void Initialize()
|
|
{
|
|
self.scale = (0.21875, 0.109375);
|
|
self.clipdist = 32;
|
|
}
|
|
|
|
}
|