This is a chess game on commandline made with Ruby
I used colorize to add colors to my boards.
- Navigate to the repo directory and run $ bundle install
- Navigate to the "lib" directory in terminal
- run $ ruby game.rb
- Move the chess pieces by using 2 character values, using A-H and 1-8 (ex: move pawn from B2 to B4)
I want to build a computer AI that will make moves based on the opponent's chess pieces' locations
As of now, when user chooses a chess piece, possible moves are printed in terminal. I want to make those possible moves flash in a different color instead of printing them out.