import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Metang", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 375, ], hp: 70, types: [ "Metal", ], evolveFrom: { en: "Beldum", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Levitate", }, effect: { en: "If Metang has any Energy attached to it, Metang's Retreat Cost is 0.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Tackle", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card