import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Servine", }, illustrator: "Shigenori Negishi", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 496, ], hp: 80, types: [ "Grass", ], evolveFrom: { en: "Snivy", }, stage: "Stage1", attacks: [ { cost: [ "Grass", "Colorless", ], name: { en: "Wring Out", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed and discard an Energy attached to the Defending Pokémon.", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Water", value: "-20" }, ], retreat: 1 } export default card