import { Card } from '../../../interfaces' import Set from '../Burning Shadows' const card: Card = { name: { en: "Passimian", fr: "Quartermac", }, illustrator: "Kouki Saitou", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 766, ], hp: 110, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Punch", fr: "Koud’Poing", }, damage: 30, }, { cost: [ "Fighting", "Fighting", ], name: { en: "Intentional Grounding", fr: "Mauvais Lancer", }, effect: { en: "Discard a Pokémon Tool card from your hand. If you don't, this attack does nothing.", fr: "Défaussez une carte Outil Pokémon de votre main. Sinon, cette attaque ne fait rien.", }, damage: 90, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card