import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Hariyama", }, illustrator: "Midori Harada", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 297, ], types: [ "Fighting", ], evolveFrom: { en: "Makuhita", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Push Out", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", }, damage: 50, }, { cost: [ "Fighting", "Fighting", "Colorless", "Colorless", ], name: { en: "Vortex Chop", }, effect: { en: "If the Defending Pokémon has any Resistance, this attack's base damage is 120 instead of 60.", }, damage: 60, }, ], weaknesses: [ { type: "Psychic", value: "+30" }, ], retreat: 4, } export default card