import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/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", }, high: { en: "https://assets.tcgdex.net/en/ex/ex13/38/high", }, }, evolveFrom: { en: "Baltoy", }, tags: [ Tag.STAGE1, ], illustrator: "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