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: "hgss1-32", localId: 32, // Card informations name: { en: "Typhlosion", fr: "Typhlosion", }, hp: 130, type: [ Type.FIRE, ], dexId: 157, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss1/32/low.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss1/32/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss1/32/high.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss1/32/high.png", }, }, evolveFrom: { en: "Quilava", fr: "Fleurisson", }, tags: [ Tag.STAGE2, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Magma Punch", fr: "Poing magma", }, damage: 50 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Fire Spin", fr: "Danseflamme", }, text: { en: "Discard 2 Energy attached to Typhlosion.", fr: "Défaussez-vous de 2 cartes Énergie attachées à Typhlosion.", }, damage: 120 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "HeartGold & SoulSilver", code: "hgss1" } } export default card