import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Nidoran♂" }, illustrator: "Souichirou Gunjima", rarity: "One Shiny", category: "Pokemon", hp: 60, types: ["Darkness"], description: { en: "The horn on a male Nidoran's forehead contains\na powerful poison. This is a very cautious\nPokémon, always straining its large ears." }, stage: "Basic", attacks: [{ name: { en: "Peck" }, damage: 20, cost: ["Darkness"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1 } export default card