import { Card } from '../../../interfaces' import Set from '../Lost Thunder' const card: Card = { name: { en: "Onix", fr: "Onix", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 95, ], hp: 120, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Land Crush", fr: "Écras’Terre", }, damage: 120, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 4, } export default card