import { Card } from '../../../interfaces' import Set from '../Gym Challenge' const card: Card = { name: { en: "Erika's Oddish", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 43, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Strange Powder", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused; if tails, the Defending Pokémon is now Asleep.", }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card