add horsey piece set

horsey-pieces
Niklas Fiekas 2021-02-07 14:26:56 +01:00
parent 2ec8278259
commit 6ff950ff75
5 changed files with 29 additions and 3 deletions

View File

@ -38,7 +38,7 @@ public/font/lichess.chess.{sfd,woff,woff2} | the [pgn4web](http://pgn4web.casasc
Noto Sans in public/font | [Google](https://fonts.google.com/specimen/Noto+Sans) | [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
Roboto in public/font | [Christian Robertson](https://fonts.google.com/specimen/Roboto) | [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
Segment7 in public/font | [Cedders](https://www.fontspace.com/cedders) | [SIL Open Font License](https://www.fontspace.com/help#license-17)
public/images/emoji/horsey.png | cham | [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/)
public/piece/horsey, public/images/emoji/horsey.png | cham, michael1241 | [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/)
public/images/staunton | [James Clarke](https://github.com/clarkerubber/Staunton-Pieces) | [MIT](https://github.com/clarkerubber/Staunton-Pieces/blob/master/LICENSE)
public/images/staunton/piece/CubesAndPi | CubesAndPi | AGPLv3+
public/images/trophy | [James Clarke](https://github.com/clarkerubber/Staunton-Pieces/tree/master/Trophies) | [MIT](https://github.com/clarkerubber/Staunton-Pieces/blob/master/LICENSE)

View File

@ -35,7 +35,8 @@ themes = [
['governor', 'svg'],
['libra', 'svg'],
['dubrovny', 'svg'],
['icpieces', 'svg']
['icpieces', 'svg'],
['horsey', 'svg']
]
types = {
'svg' => 'svg+xml;base64,',

View File

@ -52,7 +52,8 @@ object PieceSet extends PieceSetObject {
"dubrovny",
"icpieces",
"shapes",
"letter"
"letter",
"horsey"
) map { name =>
new PieceSet(name)
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,12 @@
.is2d .pawn.white {background-image:url('/assets/piece/horsey/wP.svg')}
.is2d .knight.white {background-image:url('/assets/piece/horsey/wN.svg')}
.is2d .bishop.white {background-image:url('/assets/piece/horsey/wB.svg')}
.is2d .rook.white {background-image:url('/assets/piece/horsey/wR.svg')}
.is2d .queen.white {background-image:url('/assets/piece/horsey/wQ.svg')}
.is2d .king.white {background-image:url('/assets/piece/horsey/wK.svg')}
.is2d .pawn.black {background-image:url('/assets/piece/horsey/bP.svg')}
.is2d .knight.black {background-image:url('/assets/piece/horsey/bN.svg')}
.is2d .bishop.black {background-image:url('/assets/piece/horsey/bB.svg')}
.is2d .rook.black {background-image:url('/assets/piece/horsey/bR.svg')}
.is2d .queen.black {background-image:url('/assets/piece/horsey/bQ.svg')}
.is2d .king.black {background-image:url('/assets/piece/horsey/bK.svg')}