mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
42 lines
920 B
TypeScript
42 lines
920 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Flashfire'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Lysandre",
|
|
fr: "Lysandre",
|
|
es: "Lysson",
|
|
it: "Elisio",
|
|
pt: "Lysandre",
|
|
de: "Flordelis"
|
|
},
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Échangez l'un des Pokémon de Banc de votre adversaire avec son Pokémon Actif.",
|
|
en: "Switch 1 of your opponent's Benched Pokémon with his or her Active Pokémon.",
|
|
es: "Cambia 1 de los Pokémon en Banca de tu rival por su Pokémon Activo.",
|
|
it: "Scambia uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo.",
|
|
pt: "Troque 1 dos Pokémon no Banco do seu oponente pelo Pokémon Ativo desse oponente.",
|
|
de: "Tausche 1 Pokémon auf der Bank deines Gegners gegen das Aktive Pokémon deines Gegners aus."
|
|
},
|
|
trainerType: "Supporter",
|
|
|
|
}
|
|
|
|
export default card
|