| Mechanic | Description | |----------|-------------| | | Manual toggle (costs resource or stamina). | | Absorption Phase | While active, incoming damage is reduced by 70%, and 50% of reduced damage is stored as Shield Charge . | | Shield Capacity | Max Shield Charge = 200% of player's base health. | | Release Modes | Once deactivated or full, the player can choose: - Retribution Pulse: Deals stored damage in an AoE. - Recharge Rush: Converts stored charge into health + ability cooldown reduction. - Overclock: Converts charge into bonus movement speed + critical chance for 8s. | | Cooldown | 25s after deactivation (or release). | | Visuals | Hexagonal energy panels that crack more as damage is absorbed. Glow intensifies with stored charge. |
The Agentes Shield is not a simple damage blocker. It is an energy-absorbing barrier that stores absorbed kinetic/energy damage and then releases it as a short burst of enhanced speed, counter-attack power, or team healing.
DeactivateAndRelease(ReleaseMode.Retribution); // emergency release
| Event | Feedback | |-------|----------| | Shield activated | UI hexagon icon appears + low hum sound | | Absorbing damage | UI charge bar fills, "crackling" VFX intensify | | Shield near full | Red flashing edges, warning voice line ("Shield critical") | | Release mode selected | Distinct color flash (red = Retribution, green = Recharge, blue = Overclock) | | Cooldown | Shield icon grays out + timer overlay |
if (onCooldown) return; isActive = true; currentShieldCharge = 0f; // Play shield-on VFX/SFX
switch(mode)
// Shield break if overloaded beyond capacity + 10% if (currentShieldCharge >= maxShieldCharge * 1.1f)
The series shifted gears entirely when the events of Captain America: The Winter Soldier revealed Hydra had infiltrated S.H.I.E.L.D., forcing the team into a desperate underground resistance.
| Mechanic | Description | |----------|-------------| | | Manual toggle (costs resource or stamina). | | Absorption Phase | While active, incoming damage is reduced by 70%, and 50% of reduced damage is stored as Shield Charge . | | Shield Capacity | Max Shield Charge = 200% of player's base health. | | Release Modes | Once deactivated or full, the player can choose: - Retribution Pulse: Deals stored damage in an AoE. - Recharge Rush: Converts stored charge into health + ability cooldown reduction. - Overclock: Converts charge into bonus movement speed + critical chance for 8s. | | Cooldown | 25s after deactivation (or release). | | Visuals | Hexagonal energy panels that crack more as damage is absorbed. Glow intensifies with stored charge. |
The Agentes Shield is not a simple damage blocker. It is an energy-absorbing barrier that stores absorbed kinetic/energy damage and then releases it as a short burst of enhanced speed, counter-attack power, or team healing.
DeactivateAndRelease(ReleaseMode.Retribution); // emergency release
| Event | Feedback | |-------|----------| | Shield activated | UI hexagon icon appears + low hum sound | | Absorbing damage | UI charge bar fills, "crackling" VFX intensify | | Shield near full | Red flashing edges, warning voice line ("Shield critical") | | Release mode selected | Distinct color flash (red = Retribution, green = Recharge, blue = Overclock) | | Cooldown | Shield icon grays out + timer overlay |
if (onCooldown) return; isActive = true; currentShieldCharge = 0f; // Play shield-on VFX/SFX
switch(mode)
// Shield break if overloaded beyond capacity + 10% if (currentShieldCharge >= maxShieldCharge * 1.1f)
The series shifted gears entirely when the events of Captain America: The Winter Soldier revealed Hydra had infiltrated S.H.I.E.L.D., forcing the team into a desperate underground resistance.