import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Burmy Plant Cloak", }, illustrator: "Kyoko Umemoto", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 412, ], types: [ "Grass", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Cloak Evolution", }, effect: { en: "Burmy Plant Cloak can evolve during the turn you play it.", }, }, ], attacks: [ { cost: [ "Grass", "Colorless", ], name: { en: "Tackle", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "+10" }, ], retreat: 1, } export default card