import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Fletchling", fr: "Passerouge", es: "Fletchling", it: "Fletchling", pt: "Fletchling", de: "Dartiri" }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, hp: 60, types: [ "Colorless", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge", es: "Placaje", it: "Azione", pt: "Investida", de: "Tackle" }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, stage: "Basic", description: { en: "Its body is always warm. Trainers who live in cold areas apparently sleep with it in their bed." } } export default card