import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Kecleon", }, illustrator: "Kagemaru Himeno", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 352, ], hp: 60, types: [ "Colorless", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Energy Variation", }, effect: { en: "Kecleon's type is the same as every type of basic Energy card attached to Kecleon.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Double Scratch", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card