import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Ducklett", fr: "Couaneton" }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, hp: 50, types: [ "Colorless", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Flap", fr: "Battement" }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, } export default card