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: "ex14-23", localId: 23, // Card informations name: { en: "Loudred", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 294, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex14/23/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex14/23/high", }, }, evolveFrom: { en: "Whismur", }, tags: [ Tag.STAGE1, ], illustrator: "Midori Harada", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Surprise", }, text: { en: "Choose 1 card from your opponent's hand without looking. Look at the card you chose, then have your opponent shuffle that card into his or her deck.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Bass Control", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 40 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Crystal Guardians", code: "ex14" } } export default card