mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 17:27:52 +00:00
22 lines
439 B
TypeScript
22 lines
439 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Peterson"
|
||
},
|
||
|
||
illustrator: "Megumi Mizutani",
|
||
rarity: "Ultra Rare",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
fr: "Cherchez dans votre deck une carte Énergie et un Pokémon Darkness, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck."
|
||
},
|
||
|
||
trainerType: "Supporter"
|
||
}
|
||
|
||
export default card |