import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Ducklett" }, illustrator: "Yumi", category: "Pokemon", hp: 50, types: ["Water"], stage: "Basic", attacks: [{ cost: ["Colorless", "Colorless"], name: { en: "Flap" }, damage: "30" }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "When attacked, it uses its feathers to splash water, escaping under cover of the spray.", } } export default card