import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Geodude", }, illustrator: "Hisao Nakamura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 74, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Light Punch", }, damage: 10, }, { cost: [ "Fighting", ], name: { en: "Pebble Throw", }, effect: { en: "Choose 1 of your opponent's Benched Pokémon. This attack does 10 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card