import { Card } from '../../../interfaces' import Set from '../Plasma Freeze' const card: Card = { name: { en: "Hariyama", fr: "Hariyama", }, illustrator: "Kouki Saitou", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 297, ], hp: 120, types: [ "Fighting", ], evolveFrom: { en: "Makuhita", fr: "Makuhita", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Fake Out", fr: "Bluff", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 30, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Pivot Throw", fr: "Lancer Tournant", }, effect: { en: "During your opponent's next turn, any damage done to this Pokémon by attacks is increased by 20 (after applying Weakness and Resistance).", fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés à ce Pokémon par des attaques sont augmentés de 20 (après application de la Faiblesse et de la Résistance).", }, damage: 90, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 3, } export default card