import { Card } from '../../../interfaces' import Set from '../Unified Minds' const card: Card = { name: { en: "Gabite", fr: "Carmache", }, illustrator: "SATOSHI NAKAI", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 444, ], hp: 90, types: [ "Fighting", ], evolveFrom: { en: "Gible", fr: "Griknot", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", ], name: { en: "Corkscrew Punch", fr: "Poing Tire-Bouchon", }, damage: 20, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Sharp Scythe", fr: "Faucille Acérée", }, damage: 40, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card