import { Card } from '../../../interfaces' import Set from '../Southern Islands' const card: Card = { name: { en: "Onix", }, illustrator: "Keiko Fukuyama", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 95, ], hp: 90, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Slam", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, { cost: [ "Fighting", "Fighting", "Fighting", "Fighting", ], name: { en: "Body Slam", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 40, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card