mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
103 lines
1.8 KiB
TypeScript
103 lines
1.8 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
|
import Type from '@tcgdex/sdk/interfaces/Type'
|
|
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
|
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
|
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
|
import Category from '@tcgdex/sdk/interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "dp4-41",
|
|
localId: 41,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Hariyama",
|
|
fr: "Hariyama",
|
|
},
|
|
|
|
hp: 100,
|
|
|
|
type: [
|
|
Type.FIGHTING,
|
|
],
|
|
|
|
dexId: 297,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp4/41/low",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp4/41/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp4/41/high",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp4/41/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Makuhita",
|
|
fr: "Makuhita",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: "Mitsuhiro Arita",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.FIGHTING,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Palm Strike",
|
|
fr: "Cou d'paume",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If heads, this attack does 20 damage plus 40 more damage.",
|
|
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 40 dégâts supplémentaires.",
|
|
},
|
|
damage: 20
|
|
},{
|
|
cost: [
|
|
Type.FIGHTING,
|
|
Type.FIGHTING,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Spirited Throw",
|
|
fr: "Lancer plein d'esprit",
|
|
},
|
|
text: {
|
|
en: "If Hariyama has fewer remaining HP than the Defending Pokémon, this attack's base damage is 80.",
|
|
fr: "Si Hariyama possède moins de PV que le Pokémon Défenseur, les dégâts de base de cette attaque sont de 80.",
|
|
},
|
|
damage: 50
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.PSYCHIC,
|
|
value: "+30"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 3,
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Great Encounters",
|
|
code: "dp4"
|
|
}
|
|
}
|
|
|
|
export default card
|