From: Michael Andreen Date: Thu, 30 Mar 2023 06:21:46 +0000 (+0200) Subject: T2 is 70% and T3 is 50% now X-Git-Url: https://ruin.nu/git/?p=NDIRC.git;a=commitdiff_plain T2 is 70% and T3 is 50% now --- diff --git a/Commands/PA.pm b/Commands/PA.pm index 94478e3..8b64205 100644 --- a/Commands/PA.pm +++ b/Commands/PA.pm @@ -304,8 +304,8 @@ FROM ship_stats my $number = $s->{type} eq 'EMP' ? ($amount*$s->{guns}*(100-$t->{eres})/100) : ($amount*$s->{damage}/$t->{armor}); - $number *= 0.60 if $tn eq 't2'; - $number *= 0.30 if $tn eq 't3'; + $number *= 0.70 if $tn eq 't2'; + $number *= 0.50 if $tn eq 't3'; return $number; }