import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Wormadam Sandy Cloak", }, illustrator: "Atsuko Nishida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 413, ], types: [ "Fighting", ], evolveFrom: { en: "Burmy Sandy Cloak", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", ], name: { en: "Hang Down", }, damage: 30, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Cloak Headbutt", }, effect: { en: "If you have Wormadam Trash Cloak in play, this attack does 60 damage plus 30 more damage.", }, damage: "60+", }, ], weaknesses: [ { type: "Fire", value: "+20" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 1, } export default card