1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

81 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Ruby & Sapphire'
const card: Card = {
name: {
en: "Hariyama",
fr: "Hariyama",
de: "Hariyama"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
297,
],
hp: 80,
types: [
"Fighting",
],
evolveFrom: {
en: "Makuhita",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Shove",
fr: "Bousculer",
de: "Schubser"
},
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é.",
de: "Wirf eine Münze. Bei \"Kopf\" ist das Verteidigende Pokémon jetzt gelähmt."
},
damage: 20,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Slap Down",
fr: "Écraser",
de: "Niederschlag"
},
effect: {
en: "Flip 2 coins. This attack does 40 damage plus 10 more damage for each heads.",
fr: "Lancez deux pièces. Cette attaque inflige 40 dégâts plus 10 dégâts supplémentaires pour chaque face.",
de: "Wirf 2 Münzen. Dieser Angriff fügt 40 Schadenspunkte plus 10 Schadenspunkte für jede Münze, die das Ergebnis \"Kopf\" zeigt, zu."
},
damage: "40+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card