From 883a84b7a0dd60c9e203276819bf412c9892c827 Mon Sep 17 00:00:00 2001 From: LeRatierBretonnier Date: Sun, 26 Apr 2026 15:50:51 +0200 Subject: [PATCH] =?UTF-8?q?Affichage=20des=20cartes=20am=C3=A9lior=C3=A9s?= =?UTF-8?q?=20dans=20la=20vue=20/tirage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- less/dialogs.less | 37 ++++++++----- modules/malefices-tirage-tarot-dialog.js | 52 ++++++++++++++++++ .../{000007.log => 000016.log} | 0 packs/malefices-archetypes/CURRENT | 2 +- packs/malefices-archetypes/LOG | 23 +++----- packs/malefices-archetypes/LOG.old | 8 ++- packs/malefices-archetypes/MANIFEST-000004 | Bin 330 -> 0 bytes packs/malefices-archetypes/MANIFEST-000014 | Bin 0 -> 169 bytes .../{000007.log => 000016.log} | 0 packs/malefices-armes/CURRENT | 2 +- packs/malefices-armes/LOG | 23 +++----- packs/malefices-armes/LOG.old | 8 ++- packs/malefices-armes/MANIFEST-000004 | Bin 327 -> 0 bytes packs/malefices-armes/MANIFEST-000014 | Bin 0 -> 168 bytes .../{000007.log => 000016.log} | 0 packs/malefices-macros/CURRENT | 2 +- packs/malefices-macros/LOG | 23 +++----- packs/malefices-macros/LOG.old | 8 ++- packs/malefices-macros/MANIFEST-000004 | Bin 334 -> 0 bytes packs/malefices-macros/MANIFEST-000014 | Bin 0 -> 171 bytes .../{000007.log => 000016.log} | 0 packs/malefices-tarots/CURRENT | 2 +- packs/malefices-tarots/LOG | 23 +++----- packs/malefices-tarots/LOG.old | 8 ++- packs/malefices-tarots/MANIFEST-000004 | Bin 327 -> 0 bytes packs/malefices-tarots/MANIFEST-000014 | Bin 0 -> 168 bytes styles/simple.css | 34 ++++++++---- styles/simple.css.map | 2 +- 28 files changed, 160 insertions(+), 97 deletions(-) rename packs/malefices-archetypes/{000007.log => 000016.log} (100%) delete mode 100644 packs/malefices-archetypes/MANIFEST-000004 create mode 100644 packs/malefices-archetypes/MANIFEST-000014 rename packs/malefices-armes/{000007.log => 000016.log} (100%) delete mode 100644 packs/malefices-armes/MANIFEST-000004 create mode 100644 packs/malefices-armes/MANIFEST-000014 rename packs/malefices-macros/{000007.log => 000016.log} (100%) delete mode 100644 packs/malefices-macros/MANIFEST-000004 create mode 100644 packs/malefices-macros/MANIFEST-000014 rename packs/malefices-tarots/{000007.log => 000016.log} (100%) delete mode 100644 packs/malefices-tarots/MANIFEST-000004 create mode 100644 packs/malefices-tarots/MANIFEST-000014 diff --git a/less/dialogs.less b/less/dialogs.less index 03fdd87..30832d3 100644 --- a/less/dialogs.less +++ b/less/dialogs.less @@ -391,24 +391,11 @@ width: 100px; vertical-align: top; - &:hover { - position: relative; - z-index: 100; - - .tirage-card-img { - transform: scale(2.2); - transform-origin: center top; - box-shadow: 3px 3px 12px rgba(0,0,0,0.4); - } - } - .tirage-card-img { width: 100px; border: 1px solid @be-gold-border; border-radius: 2px; box-shadow: 1px 1px 4px rgba(0,0,0,0.2); - transition: transform 0.2s ease, box-shadow 0.2s ease; - transform-origin: center center; cursor: zoom-in; } @@ -467,3 +454,27 @@ } } } + +// ── Overlay loupe pour les cartes du tirage ─────────────── +#tirage-card-zoom-overlay { + position: fixed; + z-index: 10000; + pointer-events: none; + border: 2px solid @be-gold-border; + border-radius: 3px; + box-shadow: 4px 4px 20px rgba(0,0,0,0.55); + opacity: 0; + transition: opacity 0.15s ease; + background: #000; + + &.visible { opacity: 1; } + + img { + display: block; + width: 220px; + height: auto; + border-radius: 2px; + + &.flip-tarot { transform: scaleY(-1); } + } +} diff --git a/modules/malefices-tirage-tarot-dialog.js b/modules/malefices-tirage-tarot-dialog.js index e99af92..10058f0 100644 --- a/modules/malefices-tirage-tarot-dialog.js +++ b/modules/malefices-tirage-tarot-dialog.js @@ -53,6 +53,58 @@ export class MaleficesTirageTarotDialog extends HandlebarsApplicationMixin(Appli }) el.querySelector('.tirage-close-btn')?.addEventListener('click', () => this.close()) + + this._setupCardZoom(el) + } + + /* -------------------------------------------- */ + _setupCardZoom(el) { + let overlay = document.getElementById('tirage-card-zoom-overlay') + if (!overlay) { + overlay = document.createElement('div') + overlay.id = 'tirage-card-zoom-overlay' + overlay.innerHTML = '' + document.body.appendChild(overlay) + } + const overlayImg = overlay.querySelector('img') + const ZOOM_W = 224 // 220px image + 2px border × 2 + const TAROT_RATIO = 5 / 3 // hauteur / largeur (cartes tarot portrait) + + const position = (rect) => { + const vw = window.innerWidth + const vh = window.innerHeight + const zoomH = Math.round(ZOOM_W * TAROT_RATIO) + + let left = rect.left + rect.width / 2 - ZOOM_W / 2 + let top = rect.top - zoomH - 10 + + left = Math.max(8, Math.min(left, vw - ZOOM_W - 8)) + if (top < 8) top = rect.bottom + 8 + if (top + zoomH > vh - 8) top = Math.max(8, vh - zoomH - 8) + + overlay.style.left = left + 'px' + overlay.style.top = top + 'px' + } + + const show = (cardImg) => { + overlayImg.src = cardImg.src + overlayImg.className = cardImg.className + overlay.classList.add('visible') + position(cardImg.getBoundingClientRect()) + } + + const hide = () => overlay.classList.remove('visible') + + el.querySelectorAll('.tirage-card-img').forEach(img => { + img.addEventListener('mouseenter', () => show(img)) + img.addEventListener('mouseleave', hide) + }) + } + + /* -------------------------------------------- */ + _onClose(_options) { + document.getElementById('tirage-card-zoom-overlay')?.remove() + return super._onClose(_options) } /* -------------------------------------------- */ diff --git a/packs/malefices-archetypes/000007.log b/packs/malefices-archetypes/000016.log similarity index 100% rename from packs/malefices-archetypes/000007.log rename to packs/malefices-archetypes/000016.log diff --git a/packs/malefices-archetypes/CURRENT b/packs/malefices-archetypes/CURRENT index cacca75..23b73d9 100644 --- a/packs/malefices-archetypes/CURRENT +++ b/packs/malefices-archetypes/CURRENT @@ -1 +1 @@ -MANIFEST-000004 +MANIFEST-000014 diff --git a/packs/malefices-archetypes/LOG b/packs/malefices-archetypes/LOG index 590e772..1cc0d8b 100644 --- a/packs/malefices-archetypes/LOG +++ b/packs/malefices-archetypes/LOG @@ -1,16 +1,7 @@ -2026/04/24-22:24:59.171196 7f57a57ee6c0 Recovering log #3 -2026/04/24-22:24:59.171446 7f57a57ee6c0 Level-0 table #5: started -2026/04/24-22:24:59.188279 7f57a57ee6c0 Level-0 table #5: 49972 bytes OK -2026/04/24-22:24:59.232997 7f57a57ee6c0 Delete type=0 #3 -2026/04/24-22:24:59.233084 7f57a57ee6c0 Delete type=3 #2 -2026/04/24-22:27:28.425927 7f57977fe6c0 Level-0 table #8: started -2026/04/24-22:27:28.430469 7f57977fe6c0 Level-0 table #8: 50829 bytes OK -2026/04/24-22:27:28.436422 7f57977fe6c0 Delete type=0 #6 -2026/04/24-22:27:28.465787 7f57977fe6c0 Manual compaction at level-0 from '!items!2HWSdXDSFei9KC6y' @ 72057594037927935 : 1 .. '!items!xtYE2kVIfNtrXSoU' @ 0 : 0; will stop at '!items!xtYE2kVIfNtrXSoU' @ 23 : 1 -2026/04/24-22:27:28.465795 7f57977fe6c0 Compacting 2@0 + 0@1 files -2026/04/24-22:27:28.469433 7f57977fe6c0 Generated table #9@0: 23 keys, 50829 bytes -2026/04/24-22:27:28.469455 7f57977fe6c0 Compacted 2@0 + 0@1 files => 50829 bytes -2026/04/24-22:27:28.476490 7f57977fe6c0 compacted to: files[ 0 1 0 0 0 0 0 ] -2026/04/24-22:27:28.476684 7f57977fe6c0 Delete type=2 #5 -2026/04/24-22:27:28.476866 7f57977fe6c0 Delete type=2 #8 -2026/04/24-22:27:28.476999 7f57977fe6c0 Manual compaction at level-0 from '!items!xtYE2kVIfNtrXSoU' @ 23 : 1 .. '!items!xtYE2kVIfNtrXSoU' @ 0 : 0; will stop at (end) +2026/04/26-15:45:25.152297 7f5797fff6c0 Recovering log #12 +2026/04/26-15:45:25.163242 7f5797fff6c0 Delete type=3 #10 +2026/04/26-15:45:25.163372 7f5797fff6c0 Delete type=0 #12 +2026/04/26-15:50:25.999778 7f57977fe6c0 Level-0 table #17: started +2026/04/26-15:50:25.999856 7f57977fe6c0 Level-0 table #17: 0 bytes OK +2026/04/26-15:50:26.044072 7f57977fe6c0 Delete type=0 #15 +2026/04/26-15:50:26.163225 7f57977fe6c0 Manual compaction at level-0 from '!items!2HWSdXDSFei9KC6y' @ 72057594037927935 : 1 .. '!items!xtYE2kVIfNtrXSoU' @ 0 : 0; will stop at (end) diff --git a/packs/malefices-archetypes/LOG.old b/packs/malefices-archetypes/LOG.old index e16332b..5b76c76 100644 --- a/packs/malefices-archetypes/LOG.old +++ b/packs/malefices-archetypes/LOG.old @@ -1 +1,7 @@ -2026/04/24-22:22:27.429550 7fcbf37fe6c0 Delete type=3 #1 +2026/04/24-22:28:39.384762 7f5797fff6c0 Recovering log #7 +2026/04/24-22:28:39.395035 7f5797fff6c0 Delete type=3 #4 +2026/04/24-22:28:39.395099 7f5797fff6c0 Delete type=0 #7 +2026/04/24-22:28:50.922092 7f57977fe6c0 Level-0 table #13: started +2026/04/24-22:28:50.922111 7f57977fe6c0 Level-0 table #13: 0 bytes OK +2026/04/24-22:28:50.928410 7f57977fe6c0 Delete type=0 #11 +2026/04/24-22:28:50.928567 7f57977fe6c0 Manual compaction at level-0 from '!items!2HWSdXDSFei9KC6y' @ 72057594037927935 : 1 .. '!items!xtYE2kVIfNtrXSoU' @ 0 : 0; will stop at (end) diff --git a/packs/malefices-archetypes/MANIFEST-000004 b/packs/malefices-archetypes/MANIFEST-000004 deleted file mode 100644 index 1239d8a040373789990e6d50fb86b8e68d182524..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmWIhx#Ncn10$nUPHI_dPD+xVQ)NkNd1i5{bAE0?Vo_pAeo=l-qp2SQBNH1Z12a2| zI6DLDmNsU2#mth_++sx|kMQ7>2$x{D)J#inXR}I1Mg}l|$yby_x*BDNd8YZ56h#E* zhcb#oOtg}f6^5xgBr@kqQ}ZW$Q5i1tZWP% K?2MdLup9uBy-^wf diff --git a/packs/malefices-archetypes/MANIFEST-000014 b/packs/malefices-archetypes/MANIFEST-000014 new file mode 100644 index 0000000000000000000000000000000000000000..882a92b20dd20cb663f2b8dde3dac2f83f63847a GIT binary patch literal 169 zcmexr@uIhdfss)vC$%g!CnZVGsj?)sJhM2}IX|}`u_&=5zlfDVUNN&IHMdx?q9oGQ zC_BtE&99^=A~-*kQJet`*cmx{dzoRXj6A}FQzBe~-BL3xy`9Y}86_a9VDcEI=t1QF e_9i88FfcOlb22asu;^{+-7g8^3IMr6EP4P56D+0x literal 0 HcmV?d00001 diff --git a/packs/malefices-armes/000007.log b/packs/malefices-armes/000016.log similarity index 100% rename from packs/malefices-armes/000007.log rename to packs/malefices-armes/000016.log diff --git a/packs/malefices-armes/CURRENT b/packs/malefices-armes/CURRENT index cacca75..23b73d9 100644 --- a/packs/malefices-armes/CURRENT +++ b/packs/malefices-armes/CURRENT @@ -1 +1 @@ -MANIFEST-000004 +MANIFEST-000014 diff --git a/packs/malefices-armes/LOG b/packs/malefices-armes/LOG index 73be27f..862cfdb 100644 --- a/packs/malefices-armes/LOG +++ b/packs/malefices-armes/LOG @@ -1,16 +1,7 @@ -2026/04/24-22:24:59.115818 7f57a4fed6c0 Recovering log #3 -2026/04/24-22:24:59.115867 7f57a4fed6c0 Level-0 table #5: started -2026/04/24-22:24:59.136445 7f57a4fed6c0 Level-0 table #5: 1991 bytes OK -2026/04/24-22:24:59.169110 7f57a4fed6c0 Delete type=0 #3 -2026/04/24-22:24:59.169225 7f57a4fed6c0 Delete type=3 #2 -2026/04/24-22:27:28.406907 7f57977fe6c0 Level-0 table #8: started -2026/04/24-22:27:28.410027 7f57977fe6c0 Level-0 table #8: 2085 bytes OK -2026/04/24-22:27:28.416047 7f57977fe6c0 Delete type=0 #6 -2026/04/24-22:27:28.446021 7f57977fe6c0 Manual compaction at level-0 from '!items!5J6qIaWdnhEGMAXJ' @ 72057594037927935 : 1 .. '!items!nkRQU81L1gWOfaeo' @ 0 : 0; will stop at '!items!nkRQU81L1gWOfaeo' @ 9 : 1 -2026/04/24-22:27:28.446030 7f57977fe6c0 Compacting 2@0 + 0@1 files -2026/04/24-22:27:28.449382 7f57977fe6c0 Generated table #9@0: 9 keys, 2085 bytes -2026/04/24-22:27:28.449407 7f57977fe6c0 Compacted 2@0 + 0@1 files => 2085 bytes -2026/04/24-22:27:28.456221 7f57977fe6c0 compacted to: files[ 0 1 0 0 0 0 0 ] -2026/04/24-22:27:28.456392 7f57977fe6c0 Delete type=2 #5 -2026/04/24-22:27:28.456494 7f57977fe6c0 Delete type=2 #8 -2026/04/24-22:27:28.476974 7f57977fe6c0 Manual compaction at level-0 from '!items!nkRQU81L1gWOfaeo' @ 9 : 1 .. '!items!nkRQU81L1gWOfaeo' @ 0 : 0; will stop at (end) +2026/04/26-15:45:25.139939 7f57a5fef6c0 Recovering log #12 +2026/04/26-15:45:25.149583 7f57a5fef6c0 Delete type=3 #10 +2026/04/26-15:45:25.149682 7f57a5fef6c0 Delete type=0 #12 +2026/04/26-15:50:26.086035 7f57977fe6c0 Level-0 table #17: started +2026/04/26-15:50:26.086057 7f57977fe6c0 Level-0 table #17: 0 bytes OK +2026/04/26-15:50:26.123168 7f57977fe6c0 Delete type=0 #15 +2026/04/26-15:50:26.163252 7f57977fe6c0 Manual compaction at level-0 from '!items!5J6qIaWdnhEGMAXJ' @ 72057594037927935 : 1 .. '!items!nkRQU81L1gWOfaeo' @ 0 : 0; will stop at (end) diff --git a/packs/malefices-armes/LOG.old b/packs/malefices-armes/LOG.old index 75948ae..9f7b74c 100644 --- a/packs/malefices-armes/LOG.old +++ b/packs/malefices-armes/LOG.old @@ -1 +1,7 @@ -2026/04/24-22:22:27.427665 7fcbf37fe6c0 Delete type=3 #1 +2026/04/24-22:28:39.371429 7f57a4fed6c0 Recovering log #7 +2026/04/24-22:28:39.381830 7f57a4fed6c0 Delete type=3 #4 +2026/04/24-22:28:39.381879 7f57a4fed6c0 Delete type=0 #7 +2026/04/24-22:28:50.909112 7f57977fe6c0 Level-0 table #13: started +2026/04/24-22:28:50.909132 7f57977fe6c0 Level-0 table #13: 0 bytes OK +2026/04/24-22:28:50.915804 7f57977fe6c0 Delete type=0 #11 +2026/04/24-22:28:50.928548 7f57977fe6c0 Manual compaction at level-0 from '!items!5J6qIaWdnhEGMAXJ' @ 72057594037927935 : 1 .. '!items!nkRQU81L1gWOfaeo' @ 0 : 0; will stop at (end) diff --git a/packs/malefices-armes/MANIFEST-000004 b/packs/malefices-armes/MANIFEST-000004 deleted file mode 100644 index c15cfb37ee5b074619de5e9f3e9781bd94e9a5ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 327 zcmWIhx#Ncn10$nUPHI_dPD+xVQ)NkNd1i5{bAE0?Vo_pAeo?Jv;x%6eMkY2+24;2^ zPId;? 844 bytes -2026/04/24-22:27:28.465548 7f57977fe6c0 compacted to: files[ 0 1 0 0 0 0 0 ] -2026/04/24-22:27:28.465648 7f57977fe6c0 Delete type=2 #5 -2026/04/24-22:27:28.465738 7f57977fe6c0 Delete type=2 #8 -2026/04/24-22:27:28.476986 7f57977fe6c0 Manual compaction at level-0 from '!macros!zDPgmHiwNxBWhoYz' @ 3 : 1 .. '!macros!zDPgmHiwNxBWhoYz' @ 0 : 0; will stop at (end) +2026/04/26-15:45:25.166949 7f57a57ee6c0 Recovering log #12 +2026/04/26-15:45:25.176930 7f57a57ee6c0 Delete type=3 #10 +2026/04/26-15:45:25.177039 7f57a57ee6c0 Delete type=0 #12 +2026/04/26-15:50:26.123322 7f57977fe6c0 Level-0 table #17: started +2026/04/26-15:50:26.123351 7f57977fe6c0 Level-0 table #17: 0 bytes OK +2026/04/26-15:50:26.163080 7f57977fe6c0 Delete type=0 #15 +2026/04/26-15:50:26.163536 7f57977fe6c0 Manual compaction at level-0 from '!macros!ESV4er8Hy6liMOC3' @ 72057594037927935 : 1 .. '!macros!zDPgmHiwNxBWhoYz' @ 0 : 0; will stop at (end) diff --git a/packs/malefices-macros/LOG.old b/packs/malefices-macros/LOG.old index d7a20ad..884467f 100644 --- a/packs/malefices-macros/LOG.old +++ b/packs/malefices-macros/LOG.old @@ -1 +1,7 @@ -2026/04/24-22:22:27.431094 7fcbf37fe6c0 Delete type=3 #1 +2026/04/24-22:28:39.397236 7f57a5fef6c0 Recovering log #7 +2026/04/24-22:28:39.407011 7f57a5fef6c0 Delete type=3 #4 +2026/04/24-22:28:39.407078 7f57a5fef6c0 Delete type=0 #7 +2026/04/24-22:28:50.902120 7f57977fe6c0 Level-0 table #13: started +2026/04/24-22:28:50.902174 7f57977fe6c0 Level-0 table #13: 0 bytes OK +2026/04/24-22:28:50.908974 7f57977fe6c0 Delete type=0 #11 +2026/04/24-22:28:50.928535 7f57977fe6c0 Manual compaction at level-0 from '!macros!ESV4er8Hy6liMOC3' @ 72057594037927935 : 1 .. '!macros!zDPgmHiwNxBWhoYz' @ 0 : 0; will stop at (end) diff --git a/packs/malefices-macros/MANIFEST-000004 b/packs/malefices-macros/MANIFEST-000004 deleted file mode 100644 index 8249c5d0725a617ef3c2184758229ac858ebce8f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 334 zcmWIhx#Ncn10$nUPHI_dPD+xVQ)NkNd1i5{bAE0?Vo_pAevwnWwTC|gBNH1Z12a1d zGdlz8Vm1ZE+{EOf{9;Ad;4qWaA`6d7vz$y{e`jMxMg}l|E2we_NYC}iEcdH$3eU)o ztYTz_DEK;4lnrDmJJ3{47B+SUjx%^nWg%oL8$^M>`>CfDP*b^B*jO0|x`T~@m5qUe Kosp9o)&l^?L{iBB diff --git a/packs/malefices-macros/MANIFEST-000014 b/packs/malefices-macros/MANIFEST-000014 new file mode 100644 index 0000000000000000000000000000000000000000..02f0de94d7ab4b20b064c09b8beee68767b45fa0 GIT binary patch literal 171 zcmdm~=0B~Cfss)vC$%g!CnZVGsj?)sJhM2}IX|}`u_&=5zlfDVK`}QmxhTI_vC1VN zJ=Y_%+^@nZJR?7{ijkQC4A>bt&#=K&xdw-sq!w9tRGQ^v`uaN?GqONb!4+T_!v;}s f 4076 bytes -2026/04/24-22:27:28.445747 7f57977fe6c0 compacted to: files[ 0 1 0 0 0 0 0 ] -2026/04/24-22:27:28.445870 7f57977fe6c0 Delete type=2 #5 -2026/04/24-22:27:28.445963 7f57977fe6c0 Delete type=2 #8 -2026/04/24-22:27:28.476959 7f57977fe6c0 Manual compaction at level-0 from '!items!zbGGMEQFdwVdlKAf' @ 22 : 1 .. '!items!zbGGMEQFdwVdlKAf' @ 0 : 0; will stop at (end) +2026/04/26-15:45:25.125828 7f5797fff6c0 Recovering log #12 +2026/04/26-15:45:25.137218 7f5797fff6c0 Delete type=3 #10 +2026/04/26-15:45:25.137347 7f5797fff6c0 Delete type=0 #12 +2026/04/26-15:50:26.044212 7f57977fe6c0 Level-0 table #17: started +2026/04/26-15:50:26.044240 7f57977fe6c0 Level-0 table #17: 0 bytes OK +2026/04/26-15:50:26.085910 7f57977fe6c0 Delete type=0 #15 +2026/04/26-15:50:26.163240 7f57977fe6c0 Manual compaction at level-0 from '!items!1DRKmbzGzbCRCswc' @ 72057594037927935 : 1 .. '!items!zbGGMEQFdwVdlKAf' @ 0 : 0; will stop at (end) diff --git a/packs/malefices-tarots/LOG.old b/packs/malefices-tarots/LOG.old index 1191f67..9f64b84 100644 --- a/packs/malefices-tarots/LOG.old +++ b/packs/malefices-tarots/LOG.old @@ -1 +1,7 @@ -2026/04/24-22:22:27.425195 7fcbf37fe6c0 Delete type=3 #1 +2026/04/24-22:28:39.359656 7f5797fff6c0 Recovering log #7 +2026/04/24-22:28:39.369413 7f5797fff6c0 Delete type=3 #4 +2026/04/24-22:28:39.369477 7f5797fff6c0 Delete type=0 #7 +2026/04/24-22:28:50.915944 7f57977fe6c0 Level-0 table #13: started +2026/04/24-22:28:50.915969 7f57977fe6c0 Level-0 table #13: 0 bytes OK +2026/04/24-22:28:50.922007 7f57977fe6c0 Delete type=0 #11 +2026/04/24-22:28:50.928556 7f57977fe6c0 Manual compaction at level-0 from '!items!1DRKmbzGzbCRCswc' @ 72057594037927935 : 1 .. '!items!zbGGMEQFdwVdlKAf' @ 0 : 0; will stop at (end) diff --git a/packs/malefices-tarots/MANIFEST-000004 b/packs/malefices-tarots/MANIFEST-000004 deleted file mode 100644 index 98ea99ee724e8637bce7ceea5e2dbfb4ce7de9e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 327 zcmWIhx#Ncn10$nUPHI_dPD+xVQ)NkNd1i5{bAE0?Vo_pAe$ffJm*Kt)j7)5t49x5- zV(bj8FJ3^TZZU9-FQlbC= diff --git a/packs/malefices-tarots/MANIFEST-000014 b/packs/malefices-tarots/MANIFEST-000014 new file mode 100644 index 0000000000000000000000000000000000000000..26917173ca687d61ee3bf6c620d65d19ade09326 GIT binary patch literal 168 zcmZ==xYDJWfss)vC$%g!CnZVGsj?)sJhM2}IX|}`u_&=5zlfDVUNN&IHMdx?D#_j5 z*EP^Br93Pp$J;TDQH%i$*cmzB$ioyFx&(RWCRMptB{>H<7ndh9ibE8^