This repository has been archived on 2026-03-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cau-praktikum/app/static/js/play/constants.js
T

30 lines
600 B
JavaScript

export const PIECE_IMAGE_PATHS = {
P: "/static/board_pieces/wp.png",
N: "/static/board_pieces/wn.png",
B: "/static/board_pieces/wb.png",
R: "/static/board_pieces/wr.png",
Q: "/static/board_pieces/wq.png",
K: "/static/board_pieces/wk.png",
p: "/static/board_pieces/bp.png",
n: "/static/board_pieces/bn.png",
b: "/static/board_pieces/bb.png",
r: "/static/board_pieces/br.png",
q: "/static/board_pieces/bq.png",
k: "/static/board_pieces/bk.png",
};
export const START_COUNTS = {
P: 8,
N: 2,
B: 2,
R: 2,
Q: 1,
K: 1,
p: 8,
n: 2,
b: 2,
r: 2,
q: 1,
k: 1,
};