Agentes Shield [new] Instant
[Header("Stats")] public float damageReduction = 0.7f; public float absorptionRatio = 0.5f; public float maxShieldCharge = 200f; public float cooldownDuration = 25f; private float currentShieldCharge = 0f; private bool isActive = false; private bool onCooldown = false; private HealthComponent playerHealth;
public float ProcessIncomingDamage(float incomingDamage) agentes shield
public void DeactivateAndRelease(ReleaseMode mode) [Header("Stats")] public float damageReduction = 0
if (!isActive) return; isActive = false; switch(mode) case ReleaseMode.Retribution: AoEDamage(currentShieldCharge); break; case ReleaseMode.Recharge: playerHealth.Heal(currentShieldCharge * 0.5f); ReduceAbilityCooldowns(currentShieldCharge); break; case ReleaseMode.Overclock: ApplyBuff(moveSpeedBonus, critBonus, duration: 8f); break; currentShieldCharge = 0f; StartCoroutine(CooldownRoutine()); [Header("Stats")] public float damageReduction = 0.7f
if (onCooldown) return; isActive = true; currentShieldCharge = 0f; // Play shield-on VFX/SFX

