mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-04 01:51:25 +00:00
27 lines
389 B
Text
27 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;
|
||
|
}
|
||
|
|
||
|
}
|