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: "hgss2-39", localId: 39, // Card informations name: { en: "Pupitar", fr: "Ymphect", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 247, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss2/39/low.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/39/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss2/39/high.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/39/high.png", }, }, evolveFrom: { en: "Larvitar", fr: "Embrylex", }, tags: [ Tag.STAGE1, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Hammer In", fr: "Enfoncer", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Speed Attack", fr: "Attaque rapide", }, damage: 50 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-20" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "HS—Unleashed", code: "hgss2" } } export default card