1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../Furious Fists'
const card: Card = {
name: {
en: "Hariyama",
fr: "Hariyama",
},
illustrator: "TOKIYA",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
297,
],
hp: 120,
types: [
"Fightning",
],
evolveFrom: {
en: "Makuhita",
fr: "Makuhita",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Thick Fat",
fr: "Isograisse",
},
effect: {
en: "Any damage done to this Pokémon by attacks from your opponent's Fire or Water Pokémon is reduced by 30 (after applying Weakness and Resistance).",
fr: "Tous les dégâts infligés à ce Pokémon par des attaques des Pokémon Fire ou Water de votre adversaire sont réduits de 30 (après application de la Faiblesse et de la Résistance).",
},
},
],
attacks: [
{
cost: [
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Rocket Slap",
fr: "Baffe Accélérée",
},
damage: 80,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 4,
}
export default card