'en' => Array ( 'EN Benvenuto al tavolo. Se almeno tre giocatori non sbloccano l\'uscita cliccando il lucchetto, chi esce non può risedersi a un qualunque tavolo per '.floor(BAN_TIME/60).' minuti.') );
-// FIXME - DYNAMIC WITH CACHE AND RELOAD FROM DB
+// DECK STUFF - FIXME - DYNAMIC WITH CACHE AND RELOAD FROM DB
function deck_keys()
{
- return array('xx', 'yy');
+ return array('xx', 'nb', 'yy');
}
+// DECK STUFF
function deck_id2descr($id, $lang)
{
if ($id == 'xx')
return 'carte originali';
+ else if ($id == 'nb')
+ return 'carte senza bordi';
else if ($id == 'yy')
return 'carte strette';
var preferences = new Preferences(true, 'xx', 'xx');
// FIXME move it in the html dynamic generation scope
var deck_list = { 'xx': 'Normal cards',
+ 'nb': 'No border cards',
'yy': 'Slim cards' }
function preferences_init()
{
var takes_we_n;
/* width of images */
-var cards_widths = {'xx': 65, 'yy': 54};
-var cards_heights = {'xx': 111, 'yy': 111};
+var cards_widths = {'xx': 65, 'nb': 56, 'yy': 54};
+var cards_heights = {'xx': 111, 'nb': 102, 'yy': 111};
var cards_width = cards_widths[g_deck];
var cards_width_d2 = Math.ceil(cards_width / 2);