import { Card } from '../../../interfaces' import Set from '../Base Set 2' const card: Card = { name: { en: "Kangaskhan", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 115, ], hp: 90, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Fetch", }, effect: { en: "Draw a card.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Comet Punch", }, effect: { en: "Flip 4 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card