WIP Card rendering

Render card stacks on drops
Unclaimed cards are hidden, when expired they are shown as grayscale
This commit is contained in:
2022-08-20 03:35:36 +02:00
parent eb4ffae173
commit 3f53e33598
14 changed files with 780 additions and 20 deletions

View File

@@ -0,0 +1,11 @@
'use strict';
module.exports = {
async up (queryInterface, Sequelize) {
await queryInterface.renameColumn('Characters', 'imageURL', 'imageIdentifier');
},
async down (queryInterface, Sequelize) {
await queryInterface.renameColumn('Characters', 'imageIdentifier', 'imageURL');
}
};