import { Card } from "../../../interfaces" import Set from "../Brilliant Stars" const card: Card = { dexId: [443], set: Set, name: { en: "Gible", fr: "Griknot", es: "Gible", it: "Gible", pt: "Gible", de: "Kaumalat" }, rarity: "Common", category: "Pokemon", hp: 70, types: ["Dragon"], stage: "Basic", attacks: [{ cost: ["Water", "Fighting"], name: { en: "Gnaw", fr: "Ronge", es: "Roer", it: "Rosicchiamento", pt: "RoĆ­da", de: "Nagen" }, damage: 30 }], retreat: 1, regulationMark: "F", variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card