import { Card } from "../../../interfaces" import Set from "../Shining Revelry" const card: Card = { set: Set, name: { en: "Shroodle" }, illustrator: "Krgc", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Darkness"], description: { en: "Though usually a mellow Pokémon, it will sink its sharp, poison-soaked front teeth into any that anger it, causing paralysis in the object of its ire." }, stage: "Basic", attacks: [{ name: { en: "Gnaw" }, damage: 20, cost: ["Darkness"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1 } export default card