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: "sm6-13", localId: 13, // Card informations name: { en: "Heatran", fr: "Heatran", }, hp: 130, type: [ Type.FIRE, ], dexId: 485, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm6/13/low", fr: "https://assets.tcgdex.net/fr/sm/sm6/13/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm6/13/high", fr: "https://assets.tcgdex.net/fr/sm/sm6/13/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "tetsuya koizumi", attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Guard Press", fr: "Pression de Garde", }, text: { en: "During your opponent's next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).", fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Boiling Impact", fr: "Impact Bouillonnant", }, text: { en: "Discard 2 Energy from this Pokémon.", fr: "Défaussez 2 Énergies de ce Pokémon.", }, damage: 130 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Forbidden Light", code: "sm6" } } export default card