Sentinel species, Dallas Abbott, CyArk & Conor Pepper

This commit is contained in:
nik gaffney 2020-11-18 00:49:15 +01:00
parent 1b1fce9c36
commit 631921282c
2 changed files with 3 additions and 3 deletions

View file

@ -151,15 +151,15 @@ var Deck = (function () {
return document.createElement(type);
}
var maxZ = 52;
var maxZ = 100;
function _card(i) {
var transform = prefix('transform');
// calculate rank/suit, etc..
var rank = i % 13 + 1;
var suit = i / 13 | 0;
var z = (52 - i) / 4;
var suit = i / 50 | 0;
var z = (100 - i) / 2;
// create elements
var $el = createElement('div');

Binary file not shown.

Before

Width:  |  Height:  |  Size: 124 KiB

After

Width:  |  Height:  |  Size: 304 KiB