import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Onix", }, illustrator: "Hajime Kusajima", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 95, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Crush", }, effect: { en: "Flip a coin for each Energy attached to Onix. This attack does 20 damage times the number of heads.", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card