import { Card } from '../../../interfaces' import Set from '../Fossil' const card: Card = { name: { en: "Ekans", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 23, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Spit Poison", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, }, { cost: [ "Grass", "Colorless", ], name: { en: "Wrap", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card