1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-09 22:59:54 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

92 lines
1.6 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Diamond & Pearl'
const card: Card = {
name: {
en: "Hippowdon",
fr: "Hippodocus",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
450,
],
hp: 110,
types: [
"Fighting",
],
evolveFrom: {
en: "Hippopotas",
fr: "Hippopotas",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Vacuum Up",
fr: "Aspirer",
},
effect: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
fr: "Le Pokémon Défenseur ne peut pas battre en retraite lors du prochain tour de votre adversaire.",
},
damage: 40,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Sand Eject",
fr: "Jeteur de sable",
},
effect: {
en: "During your next turn, if an attack does damage to the Defending Pokémon (after applying Weakness and Resistance), that attack does 40 more damage.",
fr: "Lors de votre prochain tour, si une attaque inflige des dégâts au Pokémon Défenseur (après application de la Faiblesse et de la Résistance), cette attaque inflige 40 dégâts supplémentaires.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Water",
value: "+20"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 3,
description: {
fr: "Il emmagasine du sable qu'il expulse en tornades par les pores de sa peau pour attaquer."
}
}
export default card