import { Card } from "../../../interfaces" import Set from "../Space-Time Smackdown" const card: Card = { set: Set, name: { en: "Nosepass" }, illustrator: "Midori Harada", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Fighting"], description: { en: "It moves less than an inch a year, but when it's in a jam, it will spin and drill down into the ground in a split second." }, stage: "Basic", attacks: [{ name: { en: "Ram" }, damage: 30, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 2 } export default card