import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Claydol", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 344, ], hp: 80, types: [ "Fighting", ], evolveFrom: { en: "Baltoy", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Hyper Beam", }, effect: { en: "Flip a coin. If heads, discard 1 Energy attached to the Defending Pokémon.", }, damage: 20, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Ram", }, damage: 50, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card