import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Metapod", }, illustrator: "Atsuko Nishida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 11, ], hp: 80, types: [ "Grass", ], evolveFrom: { en: "Caterpie", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Energy Protection", }, effect: { en: "Any damage done to Metapod by attacks is reduced by 10 for each Energy card attached to Metapod. You can't reduce more than 30 damage in this way.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Sharpen", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card