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: "pop1-2", localId: 2, // Card informations name: { en: "Metagross", }, hp: 100, type: [ Type.METAL, ], dexId: 376, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop1/2/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop1/2/high.png", }, }, evolveFrom: { en: "Metang", }, tags: [ Tag.STAGE2, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.METAL, Type.COLORLESS ], name: { en: "Metal Claw", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hyper Beam", }, text: { en: "Flip a coin. If heads, discard 1 Energy attached to the Defending Pokémon.", }, damage: 50 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.GRASS, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "POP Series 1", code: "pop1" } } export default card