import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Claydol", }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 344, ], hp: 80, types: [ "Psychic", ], evolveFrom: { en: "Baltoy", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Wide Laser", }, effect: { en: "Does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, { cost: [ "Psychic", "Colorless", "Colorless", ], name: { en: "Hyper Beam", }, effect: { en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.", }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card