import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Groudon", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 383, ], hp: 80, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Mud Shot", }, damage: 20, }, { cost: [ "Fighting", "Fighting", "Fighting", "Colorless", ], name: { en: "Earthquake", }, effect: { en: "Does 10 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 60, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card