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: "ex7-44", localId: 44, // Card informations name: { en: "Magmar", }, hp: 70, type: [ Type.FIRE, ], dexId: 126, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex7/44/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/44/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Yukiko Baba", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Dump and Draw", }, text: { en: "Discard up to 2 Energy cards from your hand. Then, draw 2 cards for each Energy card you discarded.", }, },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Flame Tail", }, damage: 40 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card