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: "smp-SM188", localId: "SM188", // Card informations name: { fr: "Kangourex-GX", }, hp: 180, type: [ Type.COLORLESS, ], image: { low: { fr: "https://assets.tcgdex.net/fr/sm/smp/SM188/low.png", }, high: { fr: "https://assets.tcgdex.net/fr/sm/smp/SM188/high.png", }, }, evolveFrom: {}, tags: [ Tag.GX, ], illustrator: { id: 149, name: "aky CG Works" }, attacks: [{ cost: [ Type.COLORLESS ], name: { fr: "Coup d’Poing en Demi Spirale", }, text: { fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { fr: "Frappe Enragée", }, text: { fr: "Si le Pokémon Actif de votre adversaire est Confus, cette attaque inflige 80 dégâts supplémentaires.", }, damage: "80+" },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { fr: "Combine Familiale-GX", }, text: { fr: "Piochez 5 cartes. (Vous ne pouvez utiliser qu’une attaque GX par partie.)", }, damage: 150 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 3, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Promos", code: "smp" } } export default card