mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 17:27:52 +00:00
33 lines
386 B
TypeScript
33 lines
386 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Triumphant'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Alph Lithograph",
|
|
fr: "Lithographie d'Alpha",
|
|
},
|
|
illustrator: "Milky Isobe",
|
|
rarity: "Rare",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "REGARDEZ TOUTES VOS CARTES RECOMPENSE QUI SONT FACE CACHEE!",
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|