import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Nosepass", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 299, ], types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Harden", }, effect: { en: "During your opponent's next turn, if Nosepass would be damaged by an attack, prevent that attack's damage done to Nosepass if that damage is 30 or less.", }, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Knock Away", }, effect: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.", }, damage: "20+", }, ], weaknesses: [ { type: "Water", value: "+10" }, ], retreat: 1, } export default card