1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

70 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [297],
set: Set,
name: {
en: "Hariyama",
fr: "Hariyama",
es: "Hariyama",
it: "Hariyama",
pt: "Hariyama",
de: "Hariyama"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 140,
types: ["Fighting"],
evolveFrom: {
en: "Makuhita",
fr: "Makuhita",
es: "Makuhita",
it: "Makuhita",
pt: "Makuhita",
de: "Makuhita"
},
stage: "Stage1",
retreat: 4,
regulationMark: "E",
illustrator: "Hitoshi Ariga",
description: {
en: "Hariyama that are big and fat aren't necessarily strong. There are some small ones that move nimbly and use moves skillfully."
},
abilities: [{
type: "Ability",
name: {
en: "Guts"
},
effect: {
en: "If this Pokémon would be Knocked Out by damage from an attack, flip a coin. If heads, this Pokémon is not Knocked Out, and its remaining HP becomes 10."
}
}],
attacks: [{
cost: ["Fighting", "Colorless", "Colorless"],
name: {
en: "Hammer In"
},
damage: 100
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card