Skip to content

Commit

Permalink
Shield aug guys now take 10% damage from main resistances rather than
Browse files Browse the repository at this point in the history
none
  • Loading branch information
theastropath committed Aug 13, 2023
1 parent df04415 commit 1716bfd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Pawns/DeusEx/Classes/MJ12CloneAugShield1.uc
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function float ShieldDamage(name damageType)
{
// handle special damage types
if ((damageType == 'Flamed') || (damageType == 'Burned') || (damageType == 'Stunned'))
return 0.0;
return 0.1;
else if ((damageType == 'TearGas') || (damageType == 'PoisonGas') || (damageType == 'HalonGas') ||
(damageType == 'Radiation') || (damageType == 'Shocked') || (damageType == 'Poison') ||
(damageType == 'PoisonEffect'))
Expand Down
2 changes: 1 addition & 1 deletion Pawns/DeusEx/Classes/NSFCloneAugShield1.uc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function float ShieldDamage(name damageType)
{
// handle special damage types
if ((damageType == 'Flamed') || (damageType == 'Burned') || (damageType == 'Stunned'))
return 0.0;
return 0.1;
else if ((damageType == 'TearGas') || (damageType == 'PoisonGas') || (damageType == 'HalonGas') ||
(damageType == 'Radiation') || (damageType == 'Shocked') || (damageType == 'Poison') ||
(damageType == 'PoisonEffect'))
Expand Down
2 changes: 1 addition & 1 deletion Pawns/DeusEx/Classes/UNATCOCloneAugShield1.uc
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function float ShieldDamage(name damageType)
{
// handle special damage types
if ((damageType == 'Flamed') || (damageType == 'Burned') || (damageType == 'Stunned'))
return 0.0;
return 0.1;
else if ((damageType == 'TearGas') || (damageType == 'PoisonGas') || (damageType == 'HalonGas') ||
(damageType == 'Radiation') || (damageType == 'Shocked') || (damageType == 'Poison') ||
(damageType == 'PoisonEffect'))
Expand Down

0 comments on commit 1716bfd

Please sign in to comment.