import { Card } from "../../../interfaces" import Set from "../Lost Origin" const card: Card = { set: Set, name: { en: "Skwovet", fr: "Rongourmand", es: "Skwovet", it: "Skwovet", pt: "Skwovet", de: "Raffel" }, rarity: "Common", category: "Pokemon", hp: 60, types: ["Colorless"], stage: "Basic", attacks: [{ cost: ["Colorless"], name: { en: "Gnaw", fr: "Ronge", es: "Roer", it: "Rosicchiamento", pt: "RoĆ­da", de: "Nagen" }, damage: 20 }], retreat: 1, regulationMark: "F", variants: { "normal": true, "reverse": true, "holo": false } } export default card