import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Onix", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 95, ], hp: 80, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Bind", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Rage", }, effect: { en: "Does 10 damage plus 10 more damage for each damage counter on Onix.", }, damage: 10, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card