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-21", localId: 21, // Card informations name: { en: "Metang", }, hp: 80, type: [ Type.METAL, ], dexId: 375, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex5/21/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex5/21/high.png", }, }, evolveFrom: { en: "Beldum", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Metal Load", }, text: { en: "Search your discard pile for a Metal Energy card and attach it to Metang.", }, },{ cost: [ Type.METAL, Type.COLORLESS ], name: { en: "Metal Claw", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.GRASS, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Hidden Legends", code: "ex5" } } export default card