import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Butterfree", }, illustrator: "Atsuko Nishida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 12, ], hp: 100, types: [ "Grass", ], evolveFrom: { en: "Metapod", }, stage: "Stage2", abilities: [ { type: "Poke-BODY", name: { en: "Sooth Dust", }, effect: { en: "As long as Butterfree is your Active Pokémon, remove 1 damage counter from each of your Pokémon between turns.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Whirlwind", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", }, damage: 30, }, { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Gust", }, damage: 50, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card