diff --git a/assets/img/cards/doppelganger.png b/assets/img/cards/doppelganger.png new file mode 100644 index 0000000..0cd5e3d Binary files /dev/null and b/assets/img/cards/doppelganger.png differ diff --git a/assets/img/cards/pareil.png b/assets/img/cards/pareil.png new file mode 100644 index 0000000..20d4a8d Binary files /dev/null and b/assets/img/cards/pareil.png differ diff --git a/assets/img/cards/rebond.png b/assets/img/cards/rebond.png index 9acbe00..897f7f4 100644 Binary files a/assets/img/cards/rebond.png and b/assets/img/cards/rebond.png differ diff --git a/assets/img/cards/sans_effet.png b/assets/img/cards/sans_effet.png new file mode 100644 index 0000000..9aaef7d Binary files /dev/null and b/assets/img/cards/sans_effet.png differ diff --git a/assets/img/cards/teleportation.png b/assets/img/cards/teleportation.png new file mode 100644 index 0000000..ef2d151 Binary files /dev/null and b/assets/img/cards/teleportation.png differ diff --git a/assets/img/cards/tout.png b/assets/img/cards/tout.png new file mode 100644 index 0000000..720ca9a Binary files /dev/null and b/assets/img/cards/tout.png differ diff --git a/assets/img/cards/vole_carte.png b/assets/img/cards/vole_carte.png new file mode 100644 index 0000000..32264a9 Binary files /dev/null and b/assets/img/cards/vole_carte.png differ diff --git a/public/game.html b/public/game.html index 3515a0f..63a31e7 100644 --- a/public/game.html +++ b/public/game.html @@ -1123,6 +1123,13 @@ if(cid === 'empathie') imgSrc = '/assets/img/cards/empathie.png'; if(cid === 'parrure') imgSrc = '/assets/img/cards/parrure.png'; if(cid === 'revolution') imgSrc = '/assets/img/cards/révolution.png'; + if(cid === 'doppelganger') imgSrc = '/assets/img/cards/doppelganger.png'; + if(cid === 'pareil') imgSrc = '/assets/img/cards/pareil.png'; + if(cid === 'sans_effet') imgSrc = '/assets/img/cards/sans_effet.png'; + if(cid === 'teleportation') imgSrc = '/assets/img/cards/teleportation.png'; + if(cid === 'tout') imgSrc = '/assets/img/cards/tout.png'; + if(cid === 'vole_carte') imgSrc = '/assets/img/cards/vole_carte.png'; + if(imgSrc){ const img = document.createElement('img'); img.src = imgSrc; diff --git a/public/index.html b/public/index.html index b1c5a82..05ec048 100644 --- a/public/index.html +++ b/public/index.html @@ -138,6 +138,13 @@ if(cid === 'empathie') imgSrc = '/assets/img/cards/empathie.png'; if(cid === 'parrure') imgSrc = '/assets/img/cards/parrure.png'; if(cid === 'revolution') imgSrc = '/assets/img/cards/révolution.png'; + if(cid === 'doppelganger') imgSrc = '/assets/img/cards/doppelganger.png'; + if(cid === 'pareil') imgSrc = '/assets/img/cards/pareil.png'; + if(cid === 'sans_effet') imgSrc = '/assets/img/cards/sans_effet.png'; + if(cid === 'teleportation') imgSrc = '/assets/img/cards/teleportation.png'; + if(cid === 'tout') imgSrc = '/assets/img/cards/tout.png'; + if(cid === 'vole_carte') imgSrc = '/assets/img/cards/vole_carte.png'; + if(imgSrc){ const img = document.createElement('img'); img.src = imgSrc; img.alt = c.title || cid || 'card'; img.className = 'card-art-img'; img.style.width = '100%'; img.style.height = '100%'; img.style.objectFit = 'cover'; art.appendChild(img); } }catch(_){ } top.appendChild(art); diff --git a/public/waiting.html b/public/waiting.html index c16b020..6ebcbd3 100644 --- a/public/waiting.html +++ b/public/waiting.html @@ -395,6 +395,13 @@ if(cid === 'empathie') imgSrc = '/assets/img/cards/empathie.png'; if(cid === 'parrure') imgSrc = '/assets/img/cards/parrure.png'; if(cid === 'revolution') imgSrc = '/assets/img/cards/révolution.png'; + if(cid === 'doppelganger') imgSrc = '/assets/img/cards/doppelganger.png'; + if(cid === 'pareil') imgSrc = '/assets/img/cards/pareil.png'; + if(cid === 'sans_effet') imgSrc = '/assets/img/cards/sans_effet.png'; + if(cid === 'teleportation') imgSrc = '/assets/img/cards/teleportation.png'; + if(cid === 'tout') imgSrc = '/assets/img/cards/tout.png'; + if(cid === 'vole_carte') imgSrc = '/assets/img/cards/vole_carte.png'; + if(imgSrc){ const img = document.createElement('img'); img.src = imgSrc; img.alt = c.title || cid || 'card'; img.className = 'card-art-img'; img.style.width='100%'; img.style.height='100%'; img.style.objectFit='cover'; art.appendChild(img); } }catch(e){} top.appendChild(art);