1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00
TCGdex [Bot] 5b32edb5bf
editor: fix Paldean Fates variants (#514)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:49 +02:00

36 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
set: Set,
name: {
en: "Clive",
fr: "Clove",
es: "Cael",
it: "Garoff",
pt: "Clive",
de: "Leval"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Your opponent reveals their hand, and you draw 2 cards for each Supporter card you find there.",
fr: "Votre adversaire montre sa main et vous piochez 2 cartes pour chaque carte Supporter que vous y trouvez.",
es: "Tu rival enseña las cartas de su mano, y tú robas 2 cartas por cada carta de Partidario que encuentres entre ellas.",
it: "Il tuo avversario mostra le carte che ha in mano e tu peschi due carte per ogni carta Aiuto presente tra quelle carte.",
pt: "Seu oponente revela a mão dele e você compra 2 cartas para cada carta de Apoiador que encontrar lá.",
de: "Dein Gegner zeigt dir seine Handkarten und du ziehst 2 Karten für jede Unterstützerkarte, die du dort findest."
},
trainerType: "Supporter",
regulationMark: "G",
variants: {
holo: false
}
}
export default card