import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Beautifly", }, illustrator: "Kagemaru Himeno", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 267, ], hp: 100, types: [ "Grass", ], evolveFrom: { en: "Silcoon", }, stage: "Stage2", abilities: [ { type: "Poke-BODY", name: { en: "Hunch", }, effect: { en: "As long as Beautifly's remaining HP is 40 or less, Beautifly does 40 more damage to the Defending Pokémon (before applying Weakness and Resistance).", }, }, ], attacks: [ { cost: [ "Grass", ], name: { en: "Luring Antenna", }, effect: { en: "Before doing damage, you may choose 1 of your opponent's Benched Pokémon and switch it with 1 of the Defending Pokémon. If you do, this attack does 20 damage to the new Defending Pokémon. Your opponent chooses the Defending Pokémon to switch.", }, damage: 20, }, { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Cutting Wind", }, damage: 50, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card