1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

31 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Lusamine ◇",
fr: "Elsa-Mina ◇",
es: "Samina ◇",
it: "Samina ◇",
pt: "Samina ◇",
de: "Samantha ◇"
},
illustrator: "nagimiso",
rarity: "Rare",
category: "Trainer",
set: Set,
trainerType: "Supporter",
effect: {
en: "You can play this card only if your opponent has exactly 3 Prize cards remaining.\n\nPrevent all damage done to your Ultra Beasts by attacks during your opponents next turn.",
fr: "Vous ne pouvez jouer cette carte que sil reste exactement 3 cartes Récompense à votre adversaire.\n\nÉvitez tous les dégâts infligés à vos Ultra-Chimères par des attaques pendant le prochain tour de votre adversaire.",
es: "Puedes jugar esta carta solo si a tu rival le quedan exactamente 3 cartas de Premio.\n\nEvita todo el daño infligido a tus Ultraentes por ataques durante el próximo turno de tu rival.",
it: "Puoi giocare questa carta solo se il tuo avversario ha esattamente tre carte Premio rimanenti.\n\nPrevieni tutti i danni inflitti alle tue Ultracreature da qualsiasi attacco durante il prossimo turno del tuo avversario.",
pt: "Você só pode jogar esta carta se seu oponente tiver exatamente 3 cartas de Prêmio restantes.\n\nPrevenirá todo o dano causado às suas Ultracriaturas por ataques durante a próxima vez de jogar do seu oponente.",
de: "Du kannst diese Karte nur spielen, wenn dein Gegner genau 3 verbleibende Preiskarten hat.\n\nVerhindere allen Schaden, der deinen Ultrabestien während des nächsten Zuges deines Gegners durch Attacken zugefügt wird."
}
}
export default card