1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

110 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Donphan",
fr: "Donphan",
de: "Donphan"
},
illustrator: "Kent Kanetsuna",
rarity: "Rare PRIME",
category: "Pokemon",
set: Set,
dexId: [
232,
],
hp: 120,
types: [
"Fighting",
],
evolveFrom: {
en: "Phanpy",
fr: "Phanpy",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Exoskeleton",
fr: "Exosquelette",
de: "Exoskelett"
},
effect: {
en: "Any damage done to Donphan by attacks is reduced by 20 (after applying Weakness and Resistance).",
fr: "Tout dégât infligé à Donphan par des attaques est réduit de 20 (après application de la Faiblesse et de la Résistance).",
de: "Schaden, der Donphan durch Angriffe zugefügt wird, wird um 20 Schadenspunkte reduziert (nachdem Schwäche und Resistenz verrechnet wurden)."
},
},
],
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Earthquake",
fr: "Séisme",
de: "Erdbeben"
},
effect: {
en: "Does 10 damage to each of your Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à chacun des Pokémon de votre Banc. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)",
de: "Dieser Angriff fügt jedem Pokémon auf deiner Bank 10 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
damage: 60,
},
{
cost: [
"Fighting",
"Fighting",
"Fighting",
],
name: {
en: "Heavy Impact",
fr: "Gros impact",
de: "Schwerer Einschlag"
},
damage: 90,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 4,
suffix: "Prime",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card