import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "pop8-1", localId: 1, // Card informations name: { en: "Heatran", }, hp: 100, type: [ Type.FIRE, ], dexId: 485, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop8/1/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop8/1/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Body Slam", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20 },{ cost: [ Type.FIRE, Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Fire Spin", }, text: { en: "Discard 2 basic Energy cards attached to Heatran. (If you can't discard cards, this attack does nothing.)", }, damage: 90 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "POP Series 8", code: "pop8" } } export default card