import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Oddish" }, illustrator: "HYOGONOSUKE", category: "Pokemon", hp: 60, types: ["Grass"], stage: "Basic", attacks: [{ cost: ["Grass"], name: { en: "Ram" }, damage: "20" }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "If exposed to moonlight, it starts to move. It roams far and wide at night to scatter its seeds.", } } export default card