mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
34 lines
374 B
TypeScript
34 lines
374 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Unleashed'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
fr: "Lithographie d'Alpha",
|
|
en: "Alph Lithograph",
|
|
},
|
|
illustrator: "Milky Isobe",
|
|
rarity: "Rare",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Mélangez votre deck.",
|
|
en: "Shuffle your deck!"
|
|
},
|
|
|
|
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|