import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Taillow", }, illustrator: "Kyoko Umemoto", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 276, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Whirlwind", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card