mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 05:12:11 +00:00
40 lines
889 B
TypeScript
40 lines
889 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Korrina’s Focus",
|
||
fr: "Concentration de Cornélia",
|
||
es: "Enfoque de Corelia",
|
||
it: "Impegno di Ornella",
|
||
pt: "Foco da Korrina",
|
||
de: "Connies Fokus"
|
||
},
|
||
|
||
illustrator: "Taira Akitsu",
|
||
rarity: "Ultra Rare",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
en: "Draw cards until you have 6 cards in your hand.",
|
||
fr: "Piochez des cartes jusqu’à en avoir 6 en main.",
|
||
es: "Roba cartas hasta que tengas 6 cartas en tu mano.",
|
||
it: "Pesca fino ad avere sei carte in mano.",
|
||
pt: "Compre cartas até ter 6 cartas na sua mão.",
|
||
de: "Ziehe so lange Karten, bis du 6 Karten auf deiner Hand hast."
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card |