mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-26 13:59:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
89
data/HeartGold & SoulSilver/HeartGold SoulSilver/107.ts
Normal file
89
data/HeartGold & SoulSilver/HeartGold SoulSilver/107.ts
Normal file
@ -0,0 +1,89 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../HeartGold SoulSilver'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Donphan",
|
||||
fr: "Donphan",
|
||||
},
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
232,
|
||||
],
|
||||
hp: 120,
|
||||
types: [
|
||||
"Fightning",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Phanpy",
|
||||
fr: "Phanpy",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-BODY",
|
||||
name: {
|
||||
en: "Exoskeleton",
|
||||
fr: "Exosquelette",
|
||||
},
|
||||
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).",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
],
|
||||
name: {
|
||||
en: "Earthquake",
|
||||
fr: "Séisme",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Inflige 10 dégâts à chacun des Pokémon de votre Banc. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
"Fightning",
|
||||
"Fightning",
|
||||
],
|
||||
name: {
|
||||
en: "Heavy Impact",
|
||||
fr: "Gros impact",
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 4,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user