import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Stufful" }, illustrator: "Sanosuke Sakuma", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Colorless"], description: { en: "Its fluffy fur is a delight to pet, but carelessly reaching out to touch this Pokémon could result in painful retaliation." }, stage: "Basic", attacks: [{ name: { en: "Hammer In" }, damage: 60, cost: ["Colorless", "Colorless", "Colorless"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 2 } export default card