1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00

41 lines
549 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Brilliant Stars"
const card: Card = {
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"
}
export default card