import { Card } from '../../../interfaces' import Set from '../Gym Heroes' const card: Card = { name: { en: "Blaine's Kangaskhan", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 115, ], hp: 80, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Child's Punch", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "One-Two Punch", }, effect: { en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage; if tails, this attack does 30 damage.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card