import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Nosepass", }, illustrator: "Sumiyoshi Kizuki", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 299, ], hp: 60, types: [ "Fighting", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "Magnetic Reversal", }, effect: { en: "Once during your turn (before your attack), if Nosepass is your Active Pokémon, you may flip a coin. If heads, switch 1 of your opponent's Benched Pokémon with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch. This power can't be used if Nosepass is affected by a Special Condition.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Sharpen", }, damage: 10, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card