import { Card } from '../../../interfaces' import Set from '../Crimson Invasion' const card: Card = { name: { en: "Swablu", fr: "Tylton", es: "Swablu", it: "Swablu", pt: "Swablu", de: "Wablu" }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 333, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Peck", fr: "Picpic", es: "Picotazo", it: "Beccata", pt: "Bicada", de: "Schnabel" }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card