mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
32 lines
358 B
TypeScript
32 lines
358 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Yello A Alternate'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
fr: "Professeur Platane",
|
|
},
|
|
illustrator: "Naoki Saito",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Défaussez votre main et piochez 7 cartes.",
|
|
},
|
|
trainerType: "Supporter",
|
|
|
|
}
|
|
|
|
export default card
|