import { Card } from '../../../interfaces' import Set from '../Ultra Prism' const card: Card = { name: { en: "Yungoos", fr: "Manglouton", }, illustrator: "Misa Tsutsui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 734, ], hp: 70, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Scout", fr: "Espionnage", }, effect: { en: "Your opponent reveals their hand.", fr: "Votre adversaire dévoile sa main.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Take Down", fr: "Bélier", }, effect: { en: "This Pokémon does 10 damage to itself.", fr: "Ce Pokémon s’inflige 10 dégâts.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card