Skip to content

Instantly share code, notes, and snippets.

@niyazpk
Created December 27, 2011 19:27
Show Gist options
  • Save niyazpk/1524869 to your computer and use it in GitHub Desktop.
Save niyazpk/1524869 to your computer and use it in GitHub Desktop.
var WHITE_KING = 100;
var WHITE_QUEEN = 90;
var WHITE_ROOK = 50;
var WHITE_BISHOP = 31;
var WHITE_KNIGHT = 30;
var WHITE_PAWN = 10;
var BLACK_KING = -WHITE_KING;
var BLACK_QUEEN = -WHITE_QUEEN;
var BLACK_ROOK = -WHITE_ROOK;
var BLACK_BISHOP = -WHITE_BISHOP;
var BLACK_KNIGHT = -WHITE_KNIGHT;
var BLACK_PAWN = -WHITE_PAWN;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment