import { Card } from '../../../interfaces' import Set from '../Neo Revelation' const card: Card = { name: { en: "Graveler", }, illustrator: "Yukiko Baba", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 75, ], hp: 70, types: [ "Fighting", ], evolveFrom: { en: "Geodude", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Earthquake", }, effect: { en: "Does 10 damage to each of your own Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 40, }, { cost: [ "Fighting", "Fighting", "Fighting", ], name: { en: "Rock Tumble", }, effect: { en: "Don't apply Resistance.", }, damage: 50, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card