import { Card } from '../../../interfaces' import Set from '../Gym Challenge' const card: Card = { name: { en: "Brock's Geodude", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 74, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Rock Toss", }, effect: { en: "Flip 3 coins. This attack does 10 damage times the number of heads.", }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card