mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
41 lines
879 B
TypeScript
41 lines
879 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: "kirisAki",
|
|
rarity: "Uncommon",
|
|
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: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|