import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Chansey", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 113, ], hp: 100, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Rollout", }, damage: 10, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Double-edge", }, effect: { en: "Chansey does 40 damage to itself.", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card