import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Geodude", }, illustrator: "Motofumi Fujiwara", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 74, ], types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Stone Barrage", }, effect: { en: "Flip a coin until you get tails. This attack does 10 damage times the number of heads.", }, damage: "10x", }, ], weaknesses: [ { type: "Grass", value: "+10" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 2, } export default card