import { Card } from '../../../interfaces' import Set from '../Battle Styles' const card: Card = { set: Set, name: { en: "Gligar", fr: "Scorplane" }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", hp: 70, types: ["Fighting"], attacks: [{ name: { en: "Slash", fr: "Tranche" }, damage: 30, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Grass", value: "×2" }], retreat: 1, regulationMark: "E" } export default card