1
0
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:
Jbleezy
2023-04-02 20:39:05 -07:00
parent eea3aabc6c
commit 5b15ec6eb5
2 changed files with 15 additions and 0 deletions

View File

@ -424,6 +424,7 @@
* Buildable table trigger requires look at
### 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
* Buildable table model sits on top of the stand
* Rotated buildable table model 90 degrees

View File

@ -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 (!is_true(self.is_brutus))