mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 06:42:10 +00:00
31 lines
302 B
TypeScript
31 lines
302 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Forbidden Light'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Lysandre ◇",
|
||
fr: "Lysandre ",
|
||
},
|
||
illustrator: "Hitoshi Ariga",
|
||
rarity: "Rare",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
trainerType: "Supporter",
|
||
|
||
}
|
||
|
||
export default card
|