chiark / gitweb /
black: wip
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Tue, 26 Oct 2021 19:31:37 +0000 (20:31 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Tue, 26 Oct 2021 19:31:37 +0000 (20:31 +0100)
pumpkin-books.ps.pl

index 0b1f6c3184a2d24afe2014f2f5751e722855d3e8..cabbc1059094a56bcca1af7b2262d942ea80fed2 100755 (executable)
@@ -556,7 +556,7 @@ END
   $o;
 }
 
-sub black_book () {
+sub black_book_pair () {
   my $o = general_book($moth, [10, 1]);
 
   $o .= <<END;
@@ -573,6 +573,25 @@ END
   $o;
 }
 
+sub black_book_more () {
+  my $o = general_book($moth, [10, 1]);
+
+  $o .= <<END;
+END
+
+  $o .= exposition(<<END);
+
+The player(s) with the shortest distance
+between a black chip and a pumpkin
+get to move their droplet.
+If only one player won a droplet, the
+players(s) the next-shortest distance
+get a ruby.
+END
+
+  $o;
+}
+
 sub arrow_any ($) { <<END;
   $black 1 setlinewidth
     newpath
@@ -666,5 +685,6 @@ print tile(
           blue_book(),
           lotus_book(),
           yellow_book(),
-          black_book(),
+          black_book_pair(),
+          black_book_more(),
          ) or die $! if 1;