mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
24 lines
516 B
TypeScript
24 lines
516 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Bird Keeper",
|
||
fr: "Ornithologue"
|
||
},
|
||
|
||
illustrator: "Hideki Ishikawa",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
en: "Switch your Active Pokémon with 1 of your Benched Pokémon. If you do, draw 3 cards.",
|
||
fr: "Échangez votre Pokémon Actif contre l’un de vos Pokémon de Banc. Dans ce cas, piochez 3 cartes."
|
||
},
|
||
|
||
trainerType: "Supporter"
|
||
}
|
||
|
||
export default card
|