add light piece set

This commit is contained in:
Thibault Duplessis 2014-11-27 18:02:45 +01:00
parent dbae11c77d
commit 11b180d768
14 changed files with 38 additions and 1 deletions

View file

@ -28,7 +28,7 @@ sealed trait PieceSetObject {
object PieceSet extends PieceSetObject {
val all = NonEmptyList("cburnett", "merida", "pirouetti", "alpha", "spatial") map { name => new PieceSet(name) }
val all = NonEmptyList("cburnett", "merida", "pirouetti", "alpha", "spatial", "light") map { name => new PieceSet(name) }
}
object PieceSet3d extends PieceSetObject {

BIN
public/piece/light/bB.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
public/piece/light/bK.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5 KiB

BIN
public/piece/light/bN.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
public/piece/light/bP.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
public/piece/light/bQ.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

BIN
public/piece/light/bR.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
public/piece/light/wB.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
public/piece/light/wK.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
public/piece/light/wN.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
public/piece/light/wP.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
public/piece/light/wQ.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

BIN
public/piece/light/wR.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -380,6 +380,43 @@ body.is2d.spatial .cg-piece.queen.black {
body.is2d.spatial .cg-piece.king.black {
background-image: url(../piece/spatial/bK.svg);
}
body.is2d.light .cg-piece.pawn.white {
background-image: url(../piece/light/wP.png);
}
body.is2d.light .cg-piece.bishop.white {
background-image: url(../piece/light/wB.png);
}
body.is2d.light .cg-piece.knight.white,
#top .cg-piece.light {
background-image: url(../piece/light/wN.png);
}
body.is2d.light .cg-piece.rook.white {
background-image: url(../piece/light/wR.png);
}
body.is2d.light .cg-piece.queen.white {
background-image: url(../piece/light/wQ.png);
}
body.is2d.light .cg-piece.king.white {
background-image: url(../piece/light/wK.png);
}
body.is2d.light .cg-piece.pawn.black {
background-image: url(../piece/light/bP.png);
}
body.is2d.light .cg-piece.bishop.black {
background-image: url(../piece/light/bB.png);
}
body.is2d.light .cg-piece.knight.black {
background-image: url(../piece/light/bN.png);
}
body.is2d.light .cg-piece.rook.black {
background-image: url(../piece/light/bR.png);
}
body.is2d.light .cg-piece.queen.black {
background-image: url(../piece/light/bQ.png);
}
body.is2d.light .cg-piece.king.black {
background-image: url(../piece/light/bK.png);
}
body.is2d.alpha .cg-piece.pawn.white {
background-image: url(../piece/alpha/wP.svg);
}