mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-09 18:47:50 +00:00
33 lines
525 B
TypeScript
33 lines
525 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Team Up'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Pokémon Communication",
|
|
fr: "Communication Pokémon",
|
|
},
|
|
illustrator: "Ayaka Yoshida",
|
|
rarity: "Rare",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Montrez un Pokémon de votre main, puis placez-le dans votre deck. Dans ce cas, cherchez un Pokémon dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|