import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Woobat" }, illustrator: "MAHOU", category: "Pokemon", hp: 60, types: ["Psychic"], stage: "Basic", attacks: [{ cost: ["Colorless"], name: { en: "Gnaw" }, damage: "10" }], weaknesses: [{ type: "Darkness", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "While inside a cave, if you look up and see lots of heart-shaped marks lining the walls, it's evidence that Woobat live there.", } } export default card