import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Swadloon", }, illustrator: "sui", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 541, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Sewaddle", }, stage: "Stage1", attacks: [ { cost: [ "Grass", ], name: { en: "Tackle", }, damage: 20, }, { cost: [ "Colorless", "Colorless", ], name: { en: "String Shot", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1 } export default card