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: "ex5-43", localId: 43, // Card informations name: { en: "Metang", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 375, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex5/43/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex5/43/high.png", }, }, evolveFrom: { en: "Beldum", }, tags: [ Tag.STAGE1, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Psyshock", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20 },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Metal Ball", }, text: { en: "Put 5 damage counters on the Defending Pokémon.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Hidden Legends", code: "ex5" } } export default card