import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Swablu", fr: "Tylton", es: "Swablu", it: "Swablu", pt: "Swablu", de: "Wablu" }, illustrator: "0313", rarity: "Common", category: "Pokemon", set: Set, hp: 50, types: [ "Colorless", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Peck", fr: "Picpic", es: "Picotazo", it: "Beccata", pt: "Bicada", de: "Pikser" }, 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: "It constantly grooms its cotton-like wings. It takes a shower to clean itself if it becomes dirty." } } export default card