import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Ekans", fr: "Abo" }, illustrator: "Uta", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Darkness", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Ram", fr: "Collision" }, damage: 10, }, { cost: [ "Darkness", "Colorless", ], name: { en: "Tail Snap", fr: "Coud’ Queue Sec" }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, regulationMark: "D" } export default card