import { Card } from "../../../interfaces" import Set from "../Eevee Grove" const card: Card = { set: Set, name: { en: "Skwovet" }, illustrator: "Akira Komayama", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Colorless"], description: { en: "It stores berries in its cheeks. When there are no\nberries to be found, Skwovet will stuff pebbles\ninto its cheeks to stave off its cravings." }, stage: "Basic", attacks: [{ name: { en: "Bite" }, damage: 30, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1 } export default card