import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex13-38", localId: 38, // Card informations name: { en: "Claydol", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 344, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex13/38/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex13/38/high.png", }, }, evolveFrom: { en: "Baltoy", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Wide Laser", }, text: { en: "Does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hyper Beam", }, text: { en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Holon Phantoms", code: "ex13" } } export default card