D2S4JG4NLWPGMMEKD5KXGSNOY7G3SC2VLHVHV6JUSBI6Y5MYYX4AC
47FQFDICPYKTV3CK46P6EHPXTN4C3LHFR2AYLEINJ4CUPCZM53AQC
2RTPHQ3FBE2EZHNZ3TWFJJKFRZOBROWLXN7KUVENSF5DHUNOR2JQC
NJIRVNZFMLDO4DN5MOBVLKOCBSGOF25BQJMFETGLCSRRIXSZ47WAC
QA5MAW5QICNJVSSBV3VXJZLBA257EHH4JMPSVREDWCW7HX7I6BRAC
HTIL7GWVKJ6WRRRQEEFGMQL6GWTFW2TP7FI34DLXI4DK4QS4HXSAC
NRK37A4NNGLF53STW5RJDHUEP6OKKJORJZL3HYVOKD7OW4QBO5XAC
OPI6W7BO4V3R5WGEVN4USOHVPUV5PVWGKYBMCRU4VQOI7F7RCF5QC
EZYBNJFUNOS3LIU6ILXN7MFKLVW4SDXW6K5T4YFKFZ2R4UWSFUXAC
ZXBDOUETFSXTFY6J5LIMXBCNMDW6NTUTZ7HZZ6ND7BNUKISR74FAC
KLQKDNMZA776M73IWLBYAHXLESBVKE44YJS2IAAMYJJLOC3IJMOAC
NDDFOS5624OS3JXFPE46C2VBGU6XYA2XOOP7X5GF26HMDPYLOQXQC
J6J74CCDLZIY2SBU6O7DCX7QUO7LVNBFOZJ7F3VW4OPRPHKQ62OAC
HADAOE2OQEOCOWLKTUEAQ6NH57SK5RKYZNLW6PQYRD2CEFHUIAZAC
JPHC6PBQJCGZ3B4LKX7C3XZOYP6UTHWV5PU5EXZ27TTXYZY3AG4AC
#myhand-wrap { float:left; height:180px; width: 316px; margin-right:.5em; }
#myevidence-wrap { float:left; height:180px; width: 660px; }
#myhand-wrap {
position: relative;
float:left; height:180px; width: 316px; margin-right:.5em;
}
#myevidence-wrap {
position: relative;
float:left; height:180px; width: 660px;
}
#casecards_help,
#myevidence_help {
position: absolute;
top:5px;
right:5px;
opacity: .5;
}
this.tiles.onItemCreate = dojo.hitch(this, function (card_div, card_type_id, card_id) {
// The first 6 tiles are "NO XXX" tiles. Mark them as such.
if (card_type_id <= 6) {
dojo.addClass(card_id, "no_x_tile");
}
// Delete the background from our "fake tiles" for the locations.
if (card_type_id >= 29) {
dojo.addClass(card_id, "fake_tile");
dojo.setStyle(card_id, "background", "none");
}
});
this.tiles.onItemCreate = dojo.hitch(this, 'setupTile');
this.addTooltip('myhand-wrap', _("TOP SECRET! Only you can see these."), '');
this.addTooltip('myevidence-wrap', _("These cards remind you which evidence is unrelated to your case. They are visible to everybody."), '');
this.addTooltip('casecards_help', _("The card cards of your left neighbour. TOP SECRET! Only you can see these."), '');
this.addTooltip('myevidence_help', _("These cards remind you which evidence is unrelated to your case. They are visible to everybody."), '');
setupEvidenceDisplayCard: function(card_div, card_type_id, card_id) {
this.addTooltip(card_div.id, _(this.gamedatas.cardinfos[card_type_id].name), _('Follow this evidence…'));
},
setupTile: function (card_div, card_type_id, card_id) {
// The first 6 tiles are "NO XXX" tiles. Mark them as such.
if (card_type_id <= 6) {
dojo.addClass(card_id, "no_x_tile");
}
// Delete the background from our "fake tiles" for the locations.
if (card_type_id >= 29) {
dojo.addClass(card_id, "fake_tile");
dojo.setStyle(card_id, "background", "none");
}
this.addTooltip(card_div.id, _(this.gamedatas.tileinfos[card_type_id].name), '');
},