import { Card } from '../../../interfaces' import Set from '../Base Set' const card: Card = { name: { en: "Metapod", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 11, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Caterpie", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Stiffen", }, effect: { en: "Flip a coin. If heads, prevent all damage done to Metapod during your opponent's next turn. (Any other effects of attacks still happen.)", }, }, { cost: [ "Grass", "Grass", ], name: { en: "Stun Spore", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card