import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Taillow", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 276, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Fly", }, effect: { en: "Flip a coin. If tails, this attack does nothing. If heads, prevent all effects of an attack, including damage, done to Taillow during your opponent's next turn.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card