import { Card } from '../../../interfaces' import Set from '../Triumphant' const card: Card = { name: { en: "Kangaskhan", fr: "Kangourex", }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 115, ], hp: 80, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Split Spiral Punch", fr: "Coup d’poing en demi spirale", }, effect: { en: "The Defending Pokémon is now Confused.", fr: "Le Pokémon Défenseur est maintenant Confus.", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Dizzy Punch", fr: "Uppercut", }, effect: { en: "Flip 2 coins. This attack does 50 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.", }, damage: "50×", }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 3, description: { en: "If it is safe, the young gets out of the belly pouch to play. The adult keeps a close eye on the youngster." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card