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: "ex4-12", localId: 12, // Card informations name: { en: "Team Magma's Torkoal", }, hp: 80, type: [ Type.FIRE, Type.DARKNESS, ], dexId: 324, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex4/12/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex4/12/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "K. Hoshiba", attacks: [{ cost: [ Type.FIRE ], name: { en: "Magma Burn", }, text: { en: "Discard the top card from your opponent's deck, and flip a coin. If tails, discard a Fire Energy attached to Team Magma's Torkoal.", }, damage: 10 },{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Hot Air", }, text: { en: "Discard a Fire Energy attached to Team Magma's Torkoal, and your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon, if any.", }, damage: 30 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Team Magma vs Team Aqua", code: "ex4" } } export default card