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: "g1-48", localId: 48, // Card informations name: { en: "Hitmonchan", fr: "Tygnon", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 107, image: { low: { en: "https://assets.tcgdex.net/en/xy/g1/48/low.png", fr: "https://assets.tcgdex.net/fr/xy/g1/48/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/g1/48/high.png", fr: "https://assets.tcgdex.net/fr/xy/g1/48/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 28, name: "match" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Bullet Punch", fr: "Pisto-Poing", }, text: { en: "Flip 2 coins. This attack does 20 more damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mach Cross", fr: "Passage Éclair", }, damage: 60 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Generations", code: "g1" } } export default card