import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Claydol", fr: "Kaorine" }, 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", fr: "Laser de grande envergure" }, effect: { en: "Does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Inflige 10 dégâts à chacun des Pokémon de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)" }, }, { cost: [ "Psychic", "Colorless", "Colorless", ], name: { en: "Hyper Beam", fr: "Ultralaser" }, effect: { en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur." }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card