(game "Capture the Queen" (players 2) (equipment { (board (square 8)) (piece "Queen" Each (move Slide (to if:(is Enemy (who at:(to))) (apply (remove (to))) ) ) ) }) (rules (start { (place "Queen2" coord:"D8") (place "Queen1" {"B1" "C1" "E1" "F1"}) } ) (play (forEach Piece) ) (end { (if (no Pieces P2) (result P1 Win)) (if (= (count Moves) 100) (result P2 Win)) }) ) ) //------------------------------------------------------------------------------ (metadata (info { (rules "The goal is to capture the black queen with the white pieces.") (source "apronus") (id "549") (version "1.3.3") (classification "board/war/replacement/eliminate/target") (credit "Eric Piette") } ) (graphics { (board Style Chess) (piece Families {"Defined" "Microsoft" "Pragmata" "Symbola"}) }) (ai "Capture the Queen_ai" ) )