1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

73 lines
949 B
TypeScript

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