import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Chansey", }, illustrator: "Miki Tanaka", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 113, ], hp: 90, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Sing", }, effect: { en: "The Defending Pokémon is now Asleep.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Egg Surprise", }, effect: { en: "Flip a coin. If heads, Chansey does 50 damage to the Defending Pokémon. If tails, remove 5 damage counters from Chansey. (All if there are less than 5.)", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card