import { Card } from "../../../interfaces" import Set from "../Space-Time Smackdown" const card: Card = { set: Set, name: { en: "Poochyena" }, illustrator: "Midori Harada", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Darkness"], description: { en: "A Pokémon with a persistent nature, it chases its chosen prey until the prey becomes exhausted." }, stage: "Basic", attacks: [{ name: { en: "Bite" }, damage: 20, cost: ["Darkness"] }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 1 } export default card