GM:ScaleNPCDamage
Description
Called when an NPC takes damage.
This hook is called only when a specific hit group of the NPC is hit. In cases where the hitgroup doesn't matter, you should use GM:EntityTakeDamage instead!
Arguments
Example
Double the damage whenever an NPC is hurt.
hook.Add( "ScaleNPCDamage", "ScaleNPCDamageExample", function( npc, hitgroup, dmginfo )
dmginfo:ScaleDamage( 2 )
end )