mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
33 lines
400 B
TypeScript
33 lines
400 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Flashfire'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Lysandre",
|
||
fr: "Lysandre",
|
||
},
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Ultra Rare",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Échangez l'un des Pokémon de Banc de votre adversaire avec son Pokémon Actif.",
|
||
},
|
||
trainerType: "Supporter",
|
||
|
||
}
|
||
|
||
export default card
|