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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/40/high.png", }, }, evolveFrom: { en: "Beldum", }, tags: [ Tag.STAGE1, ], illustrator: { id: 55, name: "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