mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-23 21:50:46 -05:00
Maxis Drone: kills on any round
This commit is contained in:
@ -424,6 +424,7 @@
|
|||||||
* Buildable table trigger requires look at
|
* Buildable table trigger requires look at
|
||||||
|
|
||||||
### Maxis Drone
|
### Maxis Drone
|
||||||
|
* Kills on any round in 1-4 shots (normally does 12000 damage max)
|
||||||
* Added hint strings for purchased, can only be one, and cooling down
|
* Added hint strings for purchased, can only be one, and cooling down
|
||||||
* Buildable table model sits on top of the stand
|
* Buildable table model sits on top of the stand
|
||||||
* Rotated buildable table model 90 degrees
|
* Rotated buildable table model 90 degrees
|
||||||
|
@ -191,6 +191,20 @@ actor_damage_override( inflictor, attacker, damage, flags, meansofdeath, weapon,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( weapon == "quadrotorturret_zm" && meansofdeath == "MOD_PISTOL_BULLET" )
|
||||||
|
{
|
||||||
|
if (!is_true(self.is_mechz))
|
||||||
|
{
|
||||||
|
damage_scalar = damage / 6000;
|
||||||
|
min_damage = int( damage_scalar * level.zombie_health ) + 1;
|
||||||
|
|
||||||
|
if ( damage < min_damage )
|
||||||
|
{
|
||||||
|
damage = min_damage;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ( isSubStr( weapon, "tower_trap" ) )
|
if ( isSubStr( weapon, "tower_trap" ) )
|
||||||
{
|
{
|
||||||
if (!is_true(self.is_brutus))
|
if (!is_true(self.is_brutus))
|
||||||
|
Reference in New Issue
Block a user