import { Card } from '../../../interfaces' import Set from '../Dragons Exalted' const card: Card = { name: { en: "Stunky", fr: "Moufouette", es: "Stunky", it: "Stunky", pt: "Stunky", de: "Skunkapuh" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 434, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Acid Spray", fr: "Bombe Acide", }, effect: { en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card