X-Git-Url: http://git.shiar.net/sheet.git/blobdiff_plain/71b75981ceb57981c622a3e240d492551b7ef109..b86bbb8de10c94737088dbc8b3c8c2fd9d7d0770:/sc.plp diff --git a/sc.plp b/sc.plp index fde2597..3c19fce 100644 --- a/sc.plp +++ b/sc.plp @@ -253,7 +253,7 @@ sub showrangeint { sprintf '%s', $_->{duration} < 0 && ' class="magic-perma"', join('', - $_->{name}, + $_->{name} // $_->{alt}, $_->{desc} ? ": $_->{desc}" : '', (map { $_ && " ($_)" } join ', ', #TODO: apply upgrades @@ -356,12 +356,11 @@ sub showrangeint { $_->{attr}->{jump} && qq'↕', '' . showmagic($_), - !$_->{attack}->[1] ? () : ( - '', showattack($_, 1), '' - ), - !$_->{attack}->[2] ? () : ( - '', showattack($_, 2), '' - ), + (map {( + '', + showattack($row, $_), + '', + )} 1 .. $#{ $_->{attack} }), "\n" ); } @@ -400,7 +399,7 @@ sub showrangeint { ) for @rows; } elsif ($get{order} eq 'attack') { - $_->{order} = $_->{hp} / 1024 + $_->{shield} / 1008 + max( + $_->{order} = $_->{hp} / 16384 + max( map { ($_->{dps} ? $_->{dps}->[-1] : ($_->{damage} + $_->{upgrade} * 3)