Skip to content
This repository has been archived by the owner on Aug 26, 2019. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniloNovakovic authored Aug 26, 2019
1 parent c0ae785 commit e9a5f90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ will he swap directions meaning he will move as far to the bottomright
as he can. AI_BISHOP will only eat enemy piece if it is caught
in this LEFT-RIGHT pattern.

> AI_BISHOP is worth 12 points
![AI Bishop Demo](docs/ai-bishop.gif)

> AI_BISHOP is worth 12 points
#### KNIGHT (N)

The knight moves to any of the closest squares that are not on the same rank, file, or diagonal, thus the move forms an "L"-shape: two squares vertically and one square horizontally, or two squares horizontally and one square vertically.
Expand All @@ -177,10 +177,10 @@ The knight is the only piece that can leap over other pieces.

The pawn can move forward to the unoccupied square immediately in front of it on the same file, or on its first move it can advance two squares along the same file, provided both squares are unoccupied; or the pawn can capture an opponent's piece on a square diagonally in front of it on an adjacent file, by moving to that square. The *AI_PAWN* will prioritize eating enemy piece over going forward.

> AI_PAWN is worth 6 points
![AI Pawn Demo](docs/ai-pawn.gif)

> AI_PAWN is worth 6 points
---

## Personal logs
Expand Down

0 comments on commit e9a5f90

Please sign in to comment.