import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/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", }, high: { en: "https://assets.tcgdex.net/en/pop/pop1/2/high", }, }, evolveFrom: { en: "Metang", }, tags: [ Tag.STAGE2, ], illustrator: "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