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: "ex8-40", localId: 40, // Card informations name: { en: "Metang", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 375, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex8/40/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/40/high", }, }, evolveFrom: { en: "Beldum", }, tags: [ Tag.STAGE1, ], illustrator: "Hisao Nakamura", attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Psychic Boom", }, text: { en: "Does 10 damage plus 10 more damage for each Energy attached to the Defending Pokémon.", }, damage: 10 },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Quick Blow", }, text: { en: "Flip a coin. If heads, this attack does 40 damage plus 20 more damage.", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card