import { Card } from '../../../interfaces' import Set from '../Roaring Skies' const card: Card = { name: { en: "Taillow", fr: "Nirondelle", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 276, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Double Peck", fr: "Double Picpic", }, effect: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de côtés face.", }, damage: "10×", }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card