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: "col1-64", localId: 64, // Card informations name: { en: "Mawile", }, hp: 60, type: [ Type.METAL, ], dexId: 303, image: { low: { en: "https://assets.tcgdex.net/en/col/col1/64/low", }, high: { en: "https://assets.tcgdex.net/en/col/col1/64/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "TOKIYA", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Selfish Draw", }, text: { en: "Look at the top card of your deck. You may put it into your hand. If not, discard it and draw a card.", }, },{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Destructive Jaw", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed and discard an Energy attached to the Defending Pokémon.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Call of Legends", code: "col1" } } export default card