import { Card } from "../../../interfaces" import Set from "../Triumphant Light" const card: Card = { set: Set, name: { en: "Nosepass" }, illustrator: "Satoshi Shirai", rarity: "One Diamond", category: "Pokemon", hp: 80, 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: "Tackle" }, damage: 10, cost: ["Colorless"] }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 3 } export default card