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: "ex9-3", localId: 3, // Card informations name: { en: "Exploud", }, hp: 120, type: [ Type.COLORLESS, ], dexId: 295, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex9/3/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex9/3/high", }, }, evolveFrom: { en: "Loudred", }, tags: [ Tag.STAGE2, ], illustrator: "Hajime Kusajima", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Collect", }, text: { en: "Draw 3 cards.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Body Slam", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hyper Voice", }, damage: 50 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mega Throw", }, text: { en: "If the Defending Pokémon is Pokémon-ex, this attack does 60 damage plus 40 more damage.", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Emerald", code: "ex9" } } export default card