import { Card } from "../../../interfaces" import Set from "../Shining Revelry" const card: Card = { set: Set, name: { en: "Ekans" }, illustrator: "Midori Harada", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Darkness"], description: { en: "By dislocating its jaw, it can swallow prey larger than itself. After a meal, it curls up and rests." }, stage: "Basic", attacks: [{ name: { en: "Ram" }, damage: 30, cost: ["Darkness", "Colorless"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1 } export default card