import { Card } from '../../../interfaces' import Set from '../POP Series 1' const card: Card = { name: { en: "Beautifly", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 267, ], hp: 100, types: [ "Grass", ], evolveFrom: { en: "Silcoon", }, stage: "Stage2", attacks: [ { cost: [ "Grass", "Colorless", ], name: { en: "Blot", }, effect: { en: "Remove 1 damage counter from Beautifly.", }, damage: 30, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Whirlwind", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", }, damage: 40, }, ], weaknesses: [ { type: "Fire" }, ], retreat: 0 } export default card