; *** Chess with Different Armies ; *** game of Ralph Betza, ZRF by Peter Aronson ; *** Version for 1st Email Championship Chess with Different Armies ; ; V.1.0 Original Coding ; V.1.1 Added David Howe's piece graphics ; You need to purchase Zillions of Games to load this rules file ; Visit the Zillions web site at http://www.zillions-of-games.com (define double-move (turn-order White Black Black White ) ) ;; Regular movement macros (define add-and-flag (set-attribute can-castle? false) add ) (define step1 ( $1 (verify not-friend?) (add-and-flag) )) (define leap2 ( $1 $2 (verify not-friend?) (add-and-flag) )) (define leap3 ( $1 $2 $3 (verify not-friend?) (add-and-flag) )) (define slide ( $1 (while empty? (add-and-flag) $1) (verify not-friend?) (add-and-flag) )) (define slide4 ( $1 (if empty? (add-and-flag) $1 (if empty? (add-and-flag) $1 (if empty? (add-and-flag) $1 ) ) ) (verify not-friend?) (add-and-flag) )) (define O-O ( (verify can-castle?) e ; KB1 (verify empty?) e ; KN1 (verify empty?) cascade e ; KR1 (verify (and friend? can-castle?) ) from back ; K1 ; Save expensive not-attacked?s for last (verify not-attacked?) e ; KB1 (verify not-attacked?) to (set-attribute can-castle? false) ; We could check if KN1 is attacked too, but this isn't ; really necessary since Zillions doesn't allow any moves ; into check e ; KN1 (set-attribute can-castle? false) add ) ) (define O-O-O ( (verify can-castle?) w ; Q1 (verify empty?) w ; QB1 (verify empty?) cascade w ; QN1 (verify empty?) w ; QR1 (verify (and friend? can-castle? (not-piece? Bede)) ) from back ; K1 ; Save expensive not-attacked?s for last (verify not-attacked?) w ; Q1 (verify not-attacked?) to (set-attribute can-castle? false) ; We could check if KN1 is attacked too, but this isn't ; really necessary since Zillions doesn't allow any moves ; into check w ; QB1 (set-attribute can-castle? false) add ) ) (define O-O-O-O ( (verify can-castle?) w ; Q1 (verify empty?) w ; QB1 (verify empty?) w ; QN1 (verify empty?) cascade w ; QR1 (verify (and friend? can-castle? (piece? Bede)) ) from back ; K1 ; Save expensive not-attacked?s for last (verify not-attacked?) w ; Q1 (verify not-attacked?) w ; B1 (verify not-attacked?) to (set-attribute can-castle? false) ; We could check if KN1 is attacked too, but this isn't ; really necessary since Zillions doesn't allow any moves ; into check w ; QB1 (set-attribute can-castle? false) add ) ) (define Pawn-add (if (in-zone? promotion-zone) (add Rook Knight Bishop Queen Furlrurlbakking Fibnif Forfnibakking Forfnifurlrurking Bede Waffle FAD Cardinal Short-Rook Woody-Rook Half-Duck Chancellor) else add) ) (define Pawn-move ( n (verify empty?) (Pawn-add) (verify (in-zone? third-rank)) n (verify empty?) add ) ) (define Pawn-capture ( $1 (verify enemy?) (Pawn-add) ) ) (define En-Passant ( $1 (verify enemy?) (verify last-to?) (verify (piece? Pawn)) capture n to n (verify last-from?) add ) ) (define Board-Definitions (image "images\Chess\Chess8x8.bmp") (grid (start-rectangle 5 5 53 53) (dimensions ("a/b/c/d/e/f/g/h" (49 0)) ; files ("8/7/6/5/4/3/2/1" (0 49)) ; ranks ) (directions (n 0 -1) (e 1 0) (s 0 1) (w -1 0) (ne 1 -1) (nw -1 -1) (se 1 1) (sw -1 1) ) ) (symmetry Black (n s)(s n) (nw sw)(sw nw) (ne se)(se ne)) (zone (name promotion-zone) (players White) (positions a8 b8 c8 d8 e8 f8 g8 h8) ) (zone (name promotion-zone) (players Black) (positions a1 b1 c1 d1 e1 f1 g1 h1) ) (zone (name third-rank) (players White) (positions a3 b3 c3 d3 e3 f3 g3 h3) ) (zone (name third-rank) (players Black) (positions a6 b6 c6 d6 e6 f6 g6 h6) ) ) (game (title "Colorbound Clobberers vs Colorbound Clobberers") (description "Ralph Betza's Chess with Different Armies. Version for 1st Email Championship Chess with Different Armies. \\ Each of the four armies available in this rule file are equal in strength, and can be fairly marched against each other. Look at the actual variants to see how pieces move. \\ Some general rules: \\ Pawns may promote to any piece that started on the board on either side. So when playing Remarkable Rookies vs Fabulous Fides, a Pawn may promote to a Knight, Bishop, Rook, Queen, Woody-Rook, Half-Duck, Short-Rook or Chancellor. \\ The King may castle with whatever piece initially occupies the spot normally occupied by the Rook. If the piece being castled with is color-bound (like the Colorbound Clobbers Bede), the King moves an extra square when castling long, and piece castled with one less square as to keep it on color. \\ This rules file contains games with one of four armies on each side: \\ The Fabulous FIDE's (Standard European Chess)\ The Nutty Knights\ The Colorbound Clobberers\ The Remarkable Rookies \\ All 16 combinations are available (even The Fabulous FIDE's vs The Fabulous FIDE's, which is normal Western Chess). \\ To see a description of how a piece moves right-click on it to bring up its properties dialog.") (history "Game of Ralph Betza, ZRF by Peter Aronson, Piece graphics by David Howe. \\ ZRF Revision 1.1, April 22nd, 2001.") (win-sound "Audio\Orchestra_CF.wav") (loss-sound "Audio\Orchestra_FC.wav") (click-sound "Audio\Pickup.wav") (release-sound "Audio\WoodThunk.wav") (players White Black) (turn-order White Black) (pass-turn false) (recycle-promotions true) ; This allows us to control what pawns promote to ; by ; what is specified in off clauses in ; board-setup block. (board (Board-Definitions)) (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Waffle b1 g1 off 8) (FAD c1 f1 off 8) (Bede a1 h1 off 8) (Cardinal d1 off 8) (King e1) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Waffle b8 g8 off 8) (FAD c8 f8 off 8) (Bede a8 h8 off 8) (Cardinal d8 off 8) (King e8) ) ) ; Pawns (piece (name Pawn) (help "Pawn: moves forward, captures diagonally, can promote on 8th row") (description "Pawn\A Pawn can move straight ahead one square, or two squares from its starting position. A Pawn captures by moving one square ahead and diagonally. If a Pawn reaches the far rank it promotes, changing into any non-pawn piece other than the King that started on the board on either side. The Pawn also execute a move called `En Passant`, or `in passing`. This allows a Pawn to take an enemy Pawn that has just moved two squares.") (image White "images\Alfaerie\wpawn.bmp" Black "images\Alfaerie\bpawn.bmp") (attribute can-castle? false) (moves (Pawn-capture nw) (Pawn-capture ne) (Pawn-move) (En-Passant e) (En-Passant w) ) ) ; Knight equivalents (piece (name Knight) (help "Knight: moves like an `L`, 2 squares one way and one the other") (description "Knight\A Knight moves like an `L`, two squares vertically plus one horizontally, or two squares horizontally plus one vertically. It hops over any pieces on the way.") (image White "images\Alfaerie\wknight.bmp" Black "images\Alfaerie\bknight.bmp") (attribute can-castle? false) (moves (leap2 n ne) (leap2 n nw) (leap2 s se) (leap2 s sw) (leap2 e ne) (leap2 e se) (leap2 w nw) (leap2 w sw) ) ) (piece (name Fibnif) (help "Fibnif: 1 space diagonal or jump 2 forward/back and 1 outward") (description "Fibnif\A Fibnif either takes on step diagonally, or jumps two squares forward and one outward, or jumps two squares back and one square outward. It hops over any pieces on the way.") (image White "images\Alfaerie\wNarrowKnightFerz.bmp" Black "images\Alfaerie\bNarrowKnightFerz.bmp") (attribute can-castle? false) (moves (step1 ne) (step1 nw) (step1 se) (step1 sw) (leap2 n ne) (leap2 n nw) (leap2 s se) (leap2 s sw) ) ) (piece (name Waffle) (help "Waffle: 1 space orthogonal or jump 2 diagonally") (description "Waffle\A Waffle either takes one step orthogonally, or jumps two squares diagonally. It hops over any pieces on the way.") (image White "images\Alfaerie\wElephantWazir.bmp" Black "images\Alfaerie\bElephantWazir.bmp") (attribute can-castle? false) (moves (step1 n) (step1 w) (step1 s) (step1 e) (leap2 ne ne) (leap2 nw nw) (leap2 se se) (leap2 sw sw) ) ) (piece (name Woody-Rook) (help "Woody-Rook: 1 space orthogonal or jump 2 orthogonally") (description "Woody-Rook\A Woody-Rook either takes one step orthogonally, or jumps two squares orthogonally. It hops over any pieces on the way.") (image White "images\Alfaerie\wwarmachinewazir.bmp" Black "images\Alfaerie\bwarmachinewazir.bmp") (attribute can-castle? false) (moves (step1 n) (step1 w) (step1 s) (step1 e) (leap2 n n) (leap2 w w) (leap2 e e) (leap2 s s) ) ) ; Bishop Equivalents (piece (name Bishop) (help "Bishop: slides diagonally any number of squares") (description "Bishop\A Bishop moves any number of squares on a diagonal. It may not leap over other pieces.") (image White "images\Alfaerie\wbishop.bmp" Black "images\Alfaerie\bbishop.bmp") (attribute can-castle? false) (moves (slide ne) (slide nw) (slide se) (slide sw) ) ) (piece (name Forfnibakking) (help "Forfnibakking: jumps like Knight forward, steps 1 space to the 5 back and side squares") (description "Forfnibakking\A Forfnibakking can make any of the four forward Knight's moves, jumping two forward and one outward or one forward and two outward, or may step a single square left, right, back or on the back diagonals. It hops over any pieces on the way.") (image White "images\Alfaerie\wForwardKnightBackwardsPrince.bmp" Black "images\Alfaerie\bForwardKnightBackwardsPrince.bmp") (attribute can-castle? false) (moves (leap2 n ne) (leap2 n nw) (leap2 e ne) (leap2 w nw) (step1 e) (step1 w) (step1 se) (step1 sw) (step1 s) ) ) (piece (name FAD) (help "FAD: steps 1 space diagonally, or jumps two on any Queen-line") (description "FAD\A FAD can either step one square diagonally, or it can hop two squares orthogonally or diagonally. It hops over any pieces on the way.") (image White "images\Alfaerie\wElephantFerzWarMachine.bmp" Black "images\Alfaerie\bElephantFerzWarMachine.bmp") (attribute can-castle? false) (moves (leap2 n n) (leap2 nw nw) (leap2 w w) (leap2 sw sw) (leap2 s s) (leap2 se se) (leap2 e e) (leap2 ne ne) (step1 ne) (step1 nw) (step1 se) (step1 sw) ) ) (piece (name Half-Duck) (help "Half-Duck: steps 1 space diagonally, or jumps 2 or 3 orthogonally") (description "Half-Duck\A Half-Duck can either step one square diagonally, or it can hop two or three squares orthogonally. It hops over any pieces on the way.") (image White "images\Alfaerie\wgreatwarmachineWazir.BMP" Black "images\Alfaerie\bgreatwarmachineWazir.BMP") (attribute can-castle? false) (moves (leap2 n n) (leap3 n n n) (leap2 w w) (leap3 w w w) (leap2 s s) (leap3 s s s) (leap2 e e) (leap3 e e e) (step1 ne) (step1 nw) (step1 se) (step1 sw) ) ) ; Rook equivalents (piece (name Rook) (help "Rook: slides any number of squares along the row or column.") (description "Rook\A Rook moves any number of squares orthogonally on a rank or a file. It may not leap over other pieces.") (image White "images\Alfaerie\wrook.bmp" Black "images\Alfaerie\brook.bmp") (attribute can-castle? true) (moves (slide n) (slide e) (slide s) (slide w) ) ) (piece (name Furlrurlbakking) (help "Furlrurlbakking: slides any number of spaces forward, left or right, steps 1 back or diagonally back.") (description "Furlrurlbakking\A Furlrurlbakking moves any number of squares forward, left or right, or one step backwards or diagonally backwards. It may not leap over other pieces.") (image White "images\Alfaerie\wForwardRookBackwardsPrince.bmp" Black "images\Alfaerie\bForwardRookBackwardsPrince.bmp") (attribute can-castle? true) (moves (slide n) (slide e) (slide w) (step1 se) (step1 s) (step1 sw) ) ) (piece (name Bede) (help "Bede: slides diagonally any number of spaces, or jumps 2 orthogonally") (description "Bede\A Bede moves any number of squares on a diagonal, or may jump two spaces orthogonally. It may not leap over other pieces when sliding, but may when jumping.") (image White "images\Alfaerie\wBishopWarMachine.bmp" Black "images\Alfaerie\bBishopWarMachine.bmp") (attribute can-castle? true) (moves (leap2 n n) (leap2 s s) (leap2 e e) (leap2 w w) (slide ne) (slide nw) (slide se) (slide sw) ) ) (piece (name Short-Rook) (help "Short-Rook: slides up to 4 spaces along the row or column.") (description "Short-Rook\A Short-Rook moves up to four squares orthogonally on a rank or a file. It may not leap over other pieces.") (image White "images\Alfaerie\whalfrook.bmp" Black "images\Alfaerie\bhalfrook.bmp") (attribute can-castle? true) (moves (slide4 n) (slide4 e) (slide4 s) (slide4 w) ) ) ; Queen equivalents (piece (name Queen) (help "Queen: can slide any number of squares in any direction") (description "Queen\A Queen moves any number of squares in a straight line. It may not leap over other pieces.") (image White "images\Alfaerie\wqueen.bmp" Black "images\Alfaerie\bqueen.bmp") (attribute can-castle? false) (moves (slide n) (slide e) (slide s) (slide w) (slide ne) (slide nw) (slide se) (slide sw) ) ) (piece (name Forfnifurlrurking) (help "Forfnifurlrurking: 1 space in any direction, forward like a Knight, sideways or forward any distance.") (description "Forfnifurlrurking\A Forfnifurlrurking can make any of the four forward Knight's moves, jumping two forward and one outward or one forward and two outward, or may step a single square in any direction, or may slide any number of spaces forward or to the side. It hops over any pieces on the way when jumping like a Knight, but not otherwise.") (image White "images\Alfaerie\wForwardChancellorPrince.bmp" Black "images\Alfaerie\bForwardChancellorPrince.bmp") (attribute can-castle? false) (moves (leap2 n ne) (leap2 n nw) (leap2 e ne) (leap2 w nw) (step1 se) (step1 sw) (step1 ne) (step1 nw) (step1 s) (slide n) (slide e) (slide w) ) ) (piece (name Cardinal) (help "Cardinal: slides diagonally any number of spaces, or jumps like a Knight") (description "Cardinal\A Cardinal moves any number of squares on a diagonal, or jumps like a Knight. It may not leap over other pieces when sliding, but may when jumping.") (image White "images\Alfaerie\wCardinal.bmp" Black "images\Alfaerie\bCardinal.bmp") (attribute can-castle? false) (moves (leap2 n ne) (leap2 n nw) (leap2 s se) (leap2 s sw) (leap2 e ne) (leap2 e se) (leap2 w nw) (leap2 w sw) (slide ne) (slide nw) (slide se) (slide sw) ) ) (piece (name Chancellor) (help "Chancellor: slides orthogonally any number of spaces, or jumps like a Knight") (description "Chancellor\A Chancellor moves any number of squares orthogonally, or jumps like a Knight. It may not leap over other pieces when sliding, but may when jumping.") (image White "images\Alfaerie\wChancellor.bmp" Black "images\Alfaerie\bChancellor.bmp") (attribute can-castle? false) (moves (leap2 n ne) (leap2 n nw) (leap2 s se) (leap2 s sw) (leap2 e ne) (leap2 e se) (leap2 w nw) (leap2 w sw) (slide n) (slide s) (slide e) (slide w) ) ) ; Royal pieces (piece (name King) (help "King: steps 1 square in any direction to a safe square") (description "King\A King can move to any adjacent square, but never to a square where it can be captured. It may also `castle` with the piece that starts in the corner if neither the piece nor King has moved yet and there is nothing in between them. In castling the King moves two squares nearer the other piece and the other piece leaps to the far side of the King. You may not castle out of or through check, or if the King or other piece involved has previously moved.") (image White "images\Alfaerie\wking.bmp" Black "images\Alfaerie\bking.bmp") (attribute can-castle? true) (moves (step1 n) (step1 e) (step1 s) (step1 w) (step1 ne) (step1 nw) (step1 se) (step1 sw) (O-O) (O-O-O) (O-O-O-O) ) ) (double-move) (loss-condition (White Black) (captured King) ) ) (variant (title "Colorbound Clobberers vs Fabulous FIDE's") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Waffle b1 g1 off 8) (FAD c1 f1 off 8) (Bede a1 h1 off 8) (Cardinal d1 off 8) (King e1) (Knight off 8) (Bishop off 8) (Rook off 8) (Queen off 8) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Knight b8 g8 off 8) (Bishop c8 f8 off 8) (Rook a8 h8 off 8) (Queen d8 off 8) (King e8) (Waffle off 8) (FAD off 8) (Bede off 8) (Cardinal off 8) ) ) ) (variant (title "Colorbound Clobberers vs Nutty Knights") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Waffle b1 g1 off 8) (FAD c1 f1 off 8) (Bede a1 h1 off 8) (Cardinal d1 off 8) (King e1) (Fibnif off 8) (Forfnibakking off 8) (Furlrurlbakking off 8) (Forfnifurlrurking off 8) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Fibnif b8 g8 off 8) (Forfnibakking c8 f8 off 8) (Furlrurlbakking a8 h8 off 8) (Forfnifurlrurking d8 off 8) (King e8) (Waffle off 8) (FAD off 8) (Bede off 8) (Cardinal off 8) ) ) ) (variant (title "Colorbound Clobberers vs Remarkable Rookies") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Waffle b1 g1 off 8) (FAD c1 f1 off 8) (Bede a1 h1 off 8) (Cardinal d1 off 8) (King e1) (Woody-Rook off 8) (Half-Duck off 8) (Short-Rook off 8) (Chancellor off 8) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Woody-Rook b8 g8 off 8) (Half-Duck c8 f8 off 8) (Short-Rook a8 h8 off 8) (Chancellor d8 off 8) (King e8) (Waffle off 8) (FAD off 8) (Bede off 8) (Cardinal off 8) ) ) ) (variant (title "-")) (variant (title "Fabulous FIDE's vs Colorbound Clobberers") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Knight b1 g1 off 8) (Bishop c1 f1 off 8) (Rook a1 h1 off 8) (Queen d1 off 8) (King e1) (Waffle off 8) (FAD off 8) (Bede off 8) (Cardinal off 8) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Waffle b8 g8 off 8) (FAD c8 f8 off 8) (Bede a8 h8 off 8) (Cardinal d8 off 8) (King e8) (Knight off 8) (Bishop off 8) (Rook off 8) (Queen off 8) ) ) ) (variant (title "Fabulous FIDE's vs Fabulous FIDE's") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Knight b1 g1 off 8) (Bishop c1 f1 off 8) (Rook a1 h1 off 8) (Queen d1 off 8) (King e1) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Knight b8 g8 off 8) (Bishop c8 f8 off 8) (Rook a8 h8 off 8) (Queen d8 off 8) (King e8) ) ) ) (variant (title "Fabulous FIDE's vs Nutty Knights") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Knight b1 g1 off 8) (Bishop c1 f1 off 8) (Rook a1 h1 off 8) (Queen d1 off 8) (King e1) (Fibnif off 8) (Forfnibakking off 8) (Furlrurlbakking off 8) (Forfnifurlrurking off 8) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Fibnif b8 g8 off 8) (Forfnibakking c8 f8 off 8) (Furlrurlbakking a8 h8 off 8) (Forfnifurlrurking d8 off 8) (King e8) (Knight off 8) (Bishop off 8) (Rook off 8) (Queen off 8) ) ) ) (variant (title "Fabulous FIDE's vs Remarkable Rookies") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Knight b1 g1 off 8) (Bishop c1 f1 off 8) (Rook a1 h1 off 8) (Queen d1 off 8) (King e1) (Woody-Rook off 8) (Half-Duck off 8) (Short-Rook off 8) (Chancellor off 8) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Woody-Rook b8 g8 off 8) (Half-Duck c8 f8 off 8) (Short-Rook a8 h8 off 8) (Chancellor d8 off 8) (King e8) (Knight off 8) (Bishop off 8) (Rook off 8) (Queen off 8) ) ) ) (variant (title "-")) (variant (title "Nutty Knights vs Colorbound Clobberers") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Fibnif b1 g1 off 8) (Forfnibakking c1 f1 off 8) (Furlrurlbakking a1 h1 off 8) (Forfnifurlrurking d1 off 8) (King e1) (Waffle off 8) (FAD off 8) (Bede off 8) (Cardinal off 8) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Waffle b8 g8 off 8) (FAD c8 f8 off 8) (Bede a8 h8 off 8) (Cardinal d8 off 8) (King e8) (Fibnif off 8) (Forfnibakking off 8) (Furlrurlbakking off 8) (Forfnifurlrurking off 8) ) ) ) (variant (title "Nutty Knights vs Fabulous FIDE's") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Fibnif b1 g1 off 8) (Forfnibakking c1 f1 off 8) (Furlrurlbakking a1 h1 off 8) (Forfnifurlrurking d1 off 8) (King e1) (Knight off 8) (Bishop off 8) (Rook off 8) (Queen off 8) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Knight b8 g8 off 8) (Bishop c8 f8 off 8) (Rook a8 h8 off 8) (Queen d8 off 8) (King e8) (Fibnif off 8) (Forfnibakking off 8) (Furlrurlbakking off 8) (Forfnifurlrurking off 8) ) ) ) (variant (title "Nutty Knights vs Nutty Knights") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Fibnif b1 g1 off 8) (Forfnibakking c1 f1 off 8) (Furlrurlbakking a1 h1 off 8) (Forfnifurlrurking d1 off 8) (King e1) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Fibnif b8 g8 off 8) (Forfnibakking c8 f8 off 8) (Furlrurlbakking a8 h8 off 8) (Forfnifurlrurking d8 off 8) (King e8) ) ) ) (variant (title "Nutty Knights vs Remarkable Rookies") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Fibnif b1 g1 off 8) (Forfnibakking c1 f1 off 8) (Furlrurlbakking a1 h1 off 8) (Forfnifurlrurking d1 off 8) (King e1) (Woody-Rook off 8) (Half-Duck off 8) (Short-Rook off 8) (Chancellor off 8) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Woody-Rook b8 g8 off 8) (Half-Duck c8 f8 off 8) (Short-Rook a8 h8 off 8) (Chancellor d8 off 8) (King e8) (Fibnif off 8) (Forfnibakking off 8) (Furlrurlbakking off 8) (Forfnifurlrurking off 8) ) ) ) (variant (title "-")) (variant (title "Remarkable Rookies vs Colorbound Clobberers") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Woody-Rook b1 g1 off 8) (Half-Duck c1 f1 off 8) (Short-Rook a1 h1 off 8) (Chancellor d1 off 8) (King e1) (Waffle off 8) (FAD off 8) (Bede off 8) (Cardinal off 8) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Waffle b8 g8 off 8) (FAD c8 f8 off 8) (Bede a8 h8 off 8) (Cardinal d8 off 8) (King e8) (Woody-Rook off 8) (Half-Duck off 8) (Short-Rook off 8) (Chancellor off 8) ) ) ) (variant (title "Remarkable Rookies vs Fabulous FIDE's") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Woody-Rook b1 g1 off 8) (Half-Duck c1 f1 off 8) (Short-Rook a1 h1 off 8) (Chancellor d1 off 8) (King e1) (Knight off 8) (Bishop off 8) (Rook off 8) (Queen off 8) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Knight b8 g8 off 8) (Bishop c8 f8 off 8) (Rook a8 h8 off 8) (Queen d8 off 8) (King e8) (Woody-Rook off 8) (Half-Duck off 8) (Short-Rook off 8) (Chancellor off 8) ) ) ) (variant (title "Remarkable Rookies vs Nutty Knights") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Woody-Rook b1 g1 off 8) (Half-Duck c1 f1 off 8) (Short-Rook a1 h1 off 8) (Chancellor d1 off 8) (King e1) (Fibnif off 8) (Forfnibakking off 8) (Furlrurlbakking off 8) (Forfnifurlrurking off 8) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Fibnif b8 g8 off 8) (Forfnibakking c8 f8 off 8) (Furlrurlbakking a8 h8 off 8) (Forfnifurlrurking d8 off 8) (King e8) (Woody-Rook off 8) (Half-Duck off 8) (Short-Rook off 8) (Chancellor off 8) ) ) ) (variant (title "Remarkable Rookies vs Remarkable Rookies") (board-setup (White (Pawn a2 b2 c2 d2 e2 f2 g2 h2) (Woody-Rook b1 g1 off 8) (Half-Duck c1 f1 off 8) (Short-Rook a1 h1 off 8) (Chancellor d1 off 8) (King e1) ) (Black (Pawn a7 b7 c7 d7 e7 f7 g7 h7) (Woody-Rook b8 g8 off 8) (Half-Duck c8 f8 off 8) (Short-Rook a8 h8 off 8) (Chancellor d8 off 8) (King e8) ) ) )