1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

32 lines
370 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Darkness Ablaze'
const card: Card = {
name: {
en: "Bird Keeper",
},
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.",
},
}
export default card