sc: refer to ventral sacs overlord by its common name
[sheet.git] / sc.plp
diff --git a/sc.plp b/sc.plp
index 3c19fce353db8aff37c84b24153adeae9192e0da..255d28fd9fb33c44d6f163838675d0280f4e22ae 100644 (file)
--- a/sc.plp
+++ b/sc.plp
@@ -38,7 +38,7 @@ my $datafile = "sc-units-$Request";
 
 Html({
        title => "$scver{title} unit cheat sheet",
-       version => '1.3',
+       version => '1.4',
        description => [
                "Reference of $scver{game} unit properties,"
                . " comparing various statistics of all the units in $scver{name}"
@@ -52,8 +52,7 @@ Html({
                $scver{major} < 2 ? qw' bw broodwar brood war ' :
                qw' starcraft2 lotv hots wol ',
        ],
-       stylesheet => [qw( light dark )],
-       raw => '<link rel="stylesheet" type="text/css" media="all" href="/sc.css?1.2">',
+       raw => '<link rel="stylesheet" type="text/css" media="all" href="/sc.css?1.3">',
        data => ["$datafile.inc.pl"],
 });
 
@@ -251,7 +250,10 @@ sub showrangeint {
                my $specials = $row->{special} or return '';
                return join ' ', map {
                        sprintf '<span%s title="%s">%s</span>',
-                               $_->{duration} < 0 && ' class="magic-perma"',
+                               join('',
+                                       $_->{duration} < 0 && ' class="magic-perma"',
+                                       $_->{detect} && ' class="unit-detect"',
+                               ),
                                join('',
                                        $_->{name} // $_->{alt},
                                        $_->{desc} ? ": $_->{desc}" : '',
@@ -278,7 +280,7 @@ sub showrangeint {
                                $_->{transform},
                        ) :
                        !defined $_->{build} ? '<td>' : sprintf('<td class="val time"%s>%s%.0f',
-                               defined $_->{warp} && qq(title="$_->{build} without warpgate"),
+                               defined $_->{warp} && sprintf(' title="%.0f without warpgate"', $_->{build}),
                                !!$_->{base} && sprintf(
                                        '<span class="unit-composed" title="%s">+</span>',
                                        'from '.join('+', @{ $_->{base} }),