From: Mischa POSLAWSKY Date: Sun, 14 Jun 2015 09:36:08 +0000 (+0200) Subject: sc: indicate maintenance cost of specials X-Git-Tag: v1.8~156 X-Git-Url: http://git.shiar.nl/sheet.git/commitdiff_plain/4c6e6d31f60439bd8242904aff422f262b1de686?ds=sidebyside sc: indicate maintenance cost of specials --- diff --git a/sc.plp b/sc.plp index 88459de..e1e4fe2 100644 --- a/sc.plp +++ b/sc.plp @@ -166,8 +166,11 @@ sub showval { $_->{desc} ? ": $_->{desc}" : '', $_->{range} || $_->{cost} ? sprintf(' (%s)', join ', ', $_->{range} ? "range $_->{range}" : (), - $_->{cost} ? sprintf('cost %.0f%%', - 100 * $_->{cost} / $row->{energy} + $_->{cost} ? sprintf('cost %.0f%%%s', + 100 * $_->{cost} / $row->{energy}, + defined $_->{maint} && sprintf('+%.1f%%/s', + 100 * $_->{maint} / $row->{energy}, + ), ) : (), ) : '', ),