Merge pull request #4220 from CrAzYPiLoT-SS13/chess_ma_dudes

Adds SpessChess!
This commit is contained in:
Fox McCloud
2016-04-23 21:05:53 -04:00
25 changed files with 3113 additions and 0 deletions
+21
View File
@@ -204,6 +204,27 @@ proc/getFilesSlow(var/client/client, var/list/files, var/register_asset = TRUE)
"ntlogo.png" = 'icons/paper_icons/ntlogo.png'
)
/datum/asset/simple/chess
assets = list(
"bishop_black.png" = 'icons/chess_pieces/bishop_black.png',
"bishop_white.png" = 'icons/chess_pieces/bishop_white.png',
"king_black.png" = 'icons/chess_pieces/king_black.png',
"king_white.png" = 'icons/chess_pieces/king_white.png',
"knight_black.png" = 'icons/chess_pieces/knight_black.png',
"knight_white.png" = 'icons/chess_pieces/knight_white.png',
"pawn_black.png" = 'icons/chess_pieces/pawn_black.png',
"pawn_white.png" = 'icons/chess_pieces/pawn_white.png',
"queen_black.png" = 'icons/chess_pieces/queen_black.png',
"queen_white.png" = 'icons/chess_pieces/queen_white.png',
"rook_black.png" = 'icons/chess_pieces/rook_black.png',
"rook_white.png" = 'icons/chess_pieces/rook_white.png',
"sprites.png" = 'icons/chess_pieces/sprites.png',
"blank.gif" = 'icons/chess_pieces/blank.gif',
"background.png" = 'nano/images/uiBackground.png',
"garbochess.js" = 'html/browser/garbochess.js',
"boardui.js" = 'html/browser/boardui.js'
)
/datum/asset/nanoui
var/list/common = list()