1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 23:52:11 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

40 lines
869 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Korrinas Focus",
fr: "Concentration de Cornélia",
es: "Enfoque de Corelia",
it: "Impegno di Ornella",
pt: "Foco da Korrina",
de: "Connies Fokus"
},
rarity: "Secret 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",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
illustrator: "Taira Akitsu"
}
export default card