mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 01:19:54 +00:00
33 lines
471 B
TypeScript
33 lines
471 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Plasma Storm'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Colress",
|
|
fr: "Nikolaï",
|
|
},
|
|
illustrator: "Kanako Eo",
|
|
rarity: "Ultra Rare",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Mélangez votre main avec votre deck. Ensuite, piochez un nombre de cartes égal au nombre de Pokémon de Banc (les vôtres et ceux de votre adversaire).",
|
|
},
|
|
trainerType: "Supporter",
|
|
|
|
}
|
|
|
|
export default card
|