import { Card } from '../../../interfaces' import Set from '../Emerging Powers' const card: Card = { name: { en: "Throh", fr: "Judokrak", }, illustrator: "match", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 538, ], hp: 90, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Scarf Hold", fr: "Kesa-Gatame", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas attaquer pendant le prochain tour de votre adversaire.", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card