mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
33 lines
464 B
TypeScript
33 lines
464 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Phantom Forces'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Target Whistle Team Flare Gear",
|
|
fr: "Sifflet de Rappel Matos Team Flare",
|
|
},
|
|
illustrator: "Toyste Beach",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Prenez un Pokémon de base dans la pile de défausse de votre adversaire et placez-le sur son Banc.",
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|